Mudit Rastogi
Mudit Rastogi

Reputation: 96

Error in downloading Django

I tried following command to install django

 pip install -e django/

I am getting following error:

django/ should either be a path to a local project or a VCS url beginning with 
    svn+, git+, hg+, or bzr+

I am using Windows 32 bit

Upvotes: 4

Views: 6473

Answers (2)

Daniel Roseman
Daniel Roseman

Reputation: 599450

You don't need the -e, nor the final /. Do this:

pip install django

Upvotes: 3

pythad
pythad

Reputation: 4267

Just try to run pip install django

Upvotes: 10

Related Questions