Reputation: 96
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
Reputation: 599450
You don't need the -e, nor the final /. Do this:
pip install django
Upvotes: 3