Search code examples
pythonpip

Fatal error in launcher: Unable to create process using ""C:\Program Files (x86)\Python33\python.exe" "C:\Program Files (x86)\Python33\pip.exe""


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 ?


Solution

  • it seems that

    python -m pip install XXX 
    

    will work anyway (worked for me) (see link by user474491)