9👍
under the folder C:\Python27\Scripts
(or the folder you installed pip
), press SHIFT and right click a blank space then select open command window here,
run
pip install Django
- How can I schedule a Task to execute at a specific time using celery?
- How does django-nose differ from the default Django test-runner
- Python/Django: sending emails in the background
- Could not import 'oauth2_provider.ext.rest_framework.OAuth2Authentication' for API setting 'DEFAULT_AUTHENTICATION_CLASSES'
- Appropriate choice of authentication class for python REST API used by web app
- Can Django run on Gunicorn alone (no Apache or nginx)?
3👍
pip
is not run from the Python shell
. Run this from the Command prompt
.
pip install Django
It will install the latest Django 1.5.
2👍
In addition to user2032220’s answer and arulmr’s answer, try to install Django within a Virtual Environment.It will help you in the long run.
Here’s the way to do it :
- AttributeError: 'NoneType' object has no attribute 'attname' (Django)
- How to emit SocketIO event on the serverside
- Is there a Django template tag that lets me set a context variable?
0👍
Running Python34
you should go to c:Python34
, folder Scripts, and type
pip install django.
- How to use ModelMultipleChoiceFilter?
- Django raises MultiValueDictKeyError in File Upload
- Django docker – could not translate host name "db" to address: nodename nor servname provided, or not known
- Django admin.TabularInline auto insert three blank row
Source:stackexchange.com