Hazzaldo
Hazzaldo

Reputation: 563

Unable to do full installation of OpenAI Gym - Unable to create process using '"c:\python37-32\python.exe"

I'm trying to do the full installation of OpenAI Gym, using the command: pip install -e '.[all]'.

However, I get the error: Fatal error in launcher: Unable to create process using '"c:\python37-32\python.exe" "C:\Python37-32\Scripts\pip.exe" install -e '.[all]''. Anyone knows what this means or came across this issue before?

I'm using Windows 7 (64-bit). Here's the info regarding the Python installed on my computer: Python 3.5.6 |Anaconda 4.2.0 (64-bit)| (default, Aug 26 2018, 16:05:27) [MSC v.1900 64 bit (AMD64)] on win32

Many thanks in advance for any help.

Upvotes: 0

Views: 605

Answers (1)

Joan Lara
Joan Lara

Reputation: 1396

Try this:

python -m pip install -e '.[all]'

Upvotes: 1

Related Questions