Ext: 73518782
When I installed Python in the new environment again encountered this situation, this time notice, found the original article has the wrong place, so to update, should be able to solve most of the problems. Environment is WIN8, originally only installed python2.7. Later, because of the use of Python3, in order to let the two coexist, the Python3 to reduce the running file changed to Python3.exe. This is the problem, and the PIP running Python3 will encounter the following error
Fatal error in launcher:unable to create process using ' "
But running the PIP2 is good. If you change the python2.7 's running file to Python2.exe, you will find that PIP2 also throws a generic error. This makes it possible to conclude that the error was caused by altering the name of the Python executable file.
Many of the programs on the web say that it is good to run python3-m pip install--upgrade pip to upgrade the PIP version, which is useful in most cases. Since reloading will create an association based on the executed file of the changed Python. But if your PIP is the latest version, it won't work, because it's the latest version that won't let you upgrade at all. Then use the following command to force the reload of the PIP
python3-m pip install--upgrade--force-reinstall pip this solves the PIP error.
(GO) run PIP Error: Fatal error in launcher:unable to create process using ' "'