Pip.exe from Python on Windows 10

17,392

Solution 1

You can use python -m pip install package

Solution 2

Worked for me in windows 10, make sure that you have added python in path of system environment variable. If you are able to run python from powershell then it means python is added to your path. After that you may try using following to upgrade pip

python -m pip install -U pip
Share:
17,392
Admin
Author by

Admin

Updated on June 09, 2022

Comments

  • Admin
    Admin almost 2 years

    I installed the latest version of Python from www.python.org. Python 3.4.3. I then go to run pip and I get

    "Fatal error in launcher: Job information querying failed"

    Searching for this error message points me to similar issues running Python under wine. If you grab a pre-compiled pip.exe it will work but it seems that when you install, the pip.exe is generated as part of the installer and this pip.exe does not work.

    Further I am dealing with a build script that creates a virtual python environment that uses pip.exe and results in the same error. Not sure how to fix this. Also not sure how pip.exe is generated.