J'ai essayé d'exécuter cette commande et d'obtenir une erreur
easy_install Django
(Django-mike)zapbuild@jaskaran:~/Documents/python/Django-mike$ easy_install Django
error: can't create or remove files in install directory
The following error occurred while trying to add or remove files in the
installation directory:
[Errno 13] Permission denied: '/home/zapbuild/Documents/python/Django-mike/lib/python2.7/site-packages/test-easy-install-7107.write-test'
The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:
/home/zapbuild/Documents/python/Django-mike/lib/python2.7/site-packages/
Perhaps your account does not have write access to this directory? If the
installation directory is a system-owned directory, you may need to sign in
as the administrator or "root" account. If you do not have administrative
access to this machine, you may wish to choose a different installation
directory, preferably one that is listed in your PYTHONPATH environment
variable.
For information on other options, you may wish to consult the
documentation at:
https://pythonhosted.org/setuptools/easy_install.html
Please make the appropriate changes for your system and try again.
En supposant que votre question est "Comment puis-je installer django?", Je pourrais vous suggérer de le faire en utilisant pip
(le gestionnaire de paquets de python). Il existe d'autres options, mais cette méthode a été la plus agréable de mon expérience.
Pour python3, vous pouvez installer pip avec
Sudo apt-get install python3-pip
Changement python3-pip
à python-pip
dans la commande ci-dessus si vous utilisez python2.
Ensuite, vous devez mettre à niveau pip (en utilisant pip pour le faire)
Sudo pip install --upgrade pip
Remarque: le premier pip
de la commande ci-dessus devra peut-être être à la place pip-3.2
ou une autre variante pour vous. Pour savoir de quelle variante pip
vous avez besoin, tapez pip
, puis consultez les suggestions de complétion de l'onglet. Ce sera quelque chose comme pip
, pip3
, ou pip-3.2
(ou autres numéros de version).
Vous devriez maintenant être prêt à installer Django en utilisant pip:
Sudo pip install Django
Si votre question était plutôt "Comment installer Django en utilisant easy_install
? "alors je m'excuse pour la réponse inutile.
Sauf si vous avez une bonne raison de demander spécifiquement une version différente, installez Django à partir du référentiel:
Sudo apt-get update && Sudo apt-get install python-Django