Pip - Fatal Error in Launcher: Unable to Create Process Using '"'

Pip - Fatal error in launcher: Unable to create process using ''

I fixed my issue by...

  1. downloading Python 3 at the official website and installing it via express installation
  2. Copy & Paste the standalone python into the ampps/python folder and overwriting the python version provided by AMPPS
  3. running python -m pip install --upgrade pip in cmd

Now pip and python 3 are installed in their latest version.

It seems that AMPPS doesnt't provide a full-fledged python build. So you need to update python yourself.

Thanks to y'all.

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

it seems that

python -m pip install XXX 

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

Fatal error in launcher: Unable to create process using file path1 file path2 : The system cannot find the file specified

it seems like python team may have implemented some security measures.
The new method now is just to prefix python -m before your commands.

Let's say you are trying to install pygame (any package) with pip. For that, you'll use

python -m pip install pygame //Or any package name

Also, upgrading pip and all other commands will also use the same command structure:

python -m pip install --upgrade pip


Related Topics



Leave a reply



Submit