简体   繁体   中英

Python 3.x - Error while installing packages using pip

I've got a problem while I want to install couple packages for python 3.4.

The problem appears while I want to type pip . Any commands after word pip , easy_install are giving the same error. Installed get-pip.py before but the error still occurs:

C:\Users\Konrad>pip
Fatal error in launche: Job information querying failed

I'm running windows10 x64. The cmd was in admin mode.

Aby suggestions? I typed that error message through google, but there weren't any helpful answers.

Running python just works and launches Python 3.4.3.

That doesn't look like the Python pip command. You have a different pip executable in the way somewhere.

Use python -m pip as a work-around; it'll use Python to find the module and use it as a command-line tool (which is explicitly supported):

python -m pip install <something>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM