26👍
Assuming you have pip installed and you want to do this through python as opposed to the standalone pip client, you can also do
python -m pip install SomePackage
6👍
The command pip
is not a Python module. It is an executable. This should work:
C:\> pip install Django
- How do I update an object's members using a dict?
- Override signup view django-allauth
- Django 1.8: Migrations not detected after deleting migrations folder
3👍
IIRC, pip on Windows installs to C:\Python34\Scripts by default. So, if that’s isn’t on your system path, you’d actually need to do this:
C:\> \Python34\Scripts\pip install Django
Also, read up in virtualenv and virtualenvwrapper. It’ll make your life a lot easier – cheers.
- Printing Receipt from Django Web Application
- Django: Forbidden (CSRF cookie not set.)
- Django or Ruby on Rails
Source:stackexchange.com