Pip install: can't open file pip, or Parent module '' not loaded

前端 未结 3 1881
谎友^
谎友^ 2021-02-14 15:35

Thanks for reading this in the first place.

I\'m trying to install Django. So here\'s what I do in the command line:

C:\\>python34 pip install Django
         


        
3条回答
  •  失恋的感觉
    2021-02-14 16:31

    The command pip is not a Python module. It is an executable. This should work:

    C:\> pip install Django
    

提交回复
热议问题