0

I'm trying to install Django using pip on my windows machine, however i keep getting an error in command prompt:

Fatal error in launcher: Unable to create process using '"'

I've been searching around on the internet for solutions, but I cant seem to find any. Thanks in advance

Prash
  • 150
  • 9

3 Answers3

0

Make sure you have a virtual env setup. Then activate it and try installing django.

Naveen Kumar
  • 189
  • 2
  • 5
0

Try use the python installation from Active State http://www.activestate.com/activepython/downloads

I'm a Linux User but I've used python and Django on Windows with ActiveState.

When you install it, the installation create a folder with any utils tools, like pip, easy_install and etc... And the pip of this script works well

Gregory
  • 6,514
  • 4
  • 28
  • 26
0

Have you tried

python -m pip install django

as advised here

Community
  • 1
  • 1
Micah.Fay
  • 559
  • 6
  • 8