Python: pip is installed but not working in windows

后端 未结 2 445
爱一瞬间的悲伤
爱一瞬间的悲伤 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]
    

提交回复
热议问题