Il semble que vous n'avez pas installé django. Vous devriez vérifier le répertoire produite par cette commande:
python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"
Pour voir si vous avez le django paquets.
Si il n'y a pas de django dossier à l'intérieur du site-packages, alors vous n'avez pas installé django (au moins pour cette version de python).
Il est possible que vous ayez plus d'une version d'installé python et django est à l'intérieur d'une autre version. Vous trouverez toutes les versions de python si vous tapez python
, puis appuyez sur TAB. Voici tous les différents python que j'ai.
$python
python python2-config python2.6 python2.7-config pythonw2.5
python-config python2.5 python2.6-config pythonw pythonw2.6
python2 python2.5-config python2.7 pythonw2 pythonw2.7
Vous pouvez faire la commande ci-dessus pour chaque version de python et de regarder à l'intérieur du site-packages répertoire de chaque pour voir si l'un d'entre eux ont django installé. Par exemple:
python2.5 -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"
python2.6 -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"
Si vous trouvez django à l'intérieur de dire python2.6, essayez de votre commande d'origine avec
python2.6 manage.py ...