Fatal error in launcher: Unable to create process

2019-01-03 00:35发布

Searching the net this seems to be a problem caused by spaces in the Python installation path.

How do I get pip to work without having to reinstall everything in a path without spaces ?

标签: python pip
22条回答
做个烂人
2楼-- · 2019-01-03 01:33

Instead of calling ipython directly, it is loaded using Python such as

$ python "full path to ipython.exe"

查看更多
Melony?
3楼-- · 2019-01-03 01:35

i had same issue and did a pip upgrade using following and now it works fine. python -m pip install --upgrade pip

查看更多
看我几分像从前
4楼-- · 2019-01-03 01:37

My exact problem was (Fatal error in launcher: Unable to create process using '"') on windows 10. So I navigated to the "C:\Python33\Lib\site-packages" and deleted django folder and pip folders then reinstalled django using pip and my problem was solved.

查看更多
▲ chillily
5楼-- · 2019-01-03 01:37

Try reinstall by using the below link,

Download https://bootstrap.pypa.io/get-pip.py

After download, copy the "get-pip.py" to python installed main dirctory, then open cmd and navigate to python directory and type "python get-pip.py" (without quotes)

Note: Also make sure the python directory is set in the environmental variable.

Hope this might help.

查看更多
登录 后发表回答