Page 1 sur 1

[python] errorno 13

Publié : sam. 12 août 2017, 18:08
par Eren0
Bonjour, pour installer un paquet je dois utiliser la commande python setup.py install, mais quand je l'utilise j'ai :
running install
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: '/usr/lib/python3.6/site-packages/test-easy-install-27560.write-test'

The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:

/usr/lib/python3.6/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://setuptools.readthedocs.io/en/la ... stall.html

Please make the appropriate changes for your system and try again.

Re: [python] errorno 13

Publié : dim. 13 août 2017, 08:22
par benjarobin
Bonjour, l'erreur t'explique le problème, mais ce n'est de toute façon pas une bonne idée de faire la chose en root. Tu dois passer par un paquet (un pkgbuild) existant ou de ta création.

Re: [python] errorno 13

Publié : dim. 13 août 2017, 11:00
par Eren0
Et si je vais dans le dossier et que je fais

Code : Tout sélectionner

pip install .
en user, c'est bon ?

En fait si j'ai bien compris il ne veut pas, parce-qu'il ne peut pas écrire dans /usr/lib en tant qu'user c'est ça ?