Python: pip is installed but not working in windows

后端 未结 2 446
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-28 10:30

I have installed python 3.6.0, you don\'t need to install pip manually if you are using python (>3.3). But When I am trying to access pip (pip --version), it throws me two error

相关标签:
2条回答
  • 2021-01-28 11:09

    You should try to write

    python -m pip --version
    

    If this gives an error message, install pip by downloading get-pip.py from https://pip.pypa.io/en/stable/installing/ and install with

    python get-pip.py
    

    Installing with pip is then done by

    python -m pip install [package name]
    
    0 讨论(0)
  • 2021-01-28 11:11

    Add your all path in your system variable instead of adding in user variable. It worked for me!!! :)

    0 讨论(0)
提交回复
热议问题