user3241992
user3241992

Reputation: 71

Pip.exe from Python on Windows 10

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.

Upvotes: 7

Views: 20636

Answers (2)

user3010443
user3010443

Reputation: 21

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

Upvotes: 2

Jin
Jin

Reputation: 179

You can use python -m pip install package

Upvotes: 18

Related Questions