web-dev-qa-db-fra.com

Erreur sur apt-get: / usr / sbin / update-info-dir: 23: / etc / environment: /usr/local/lib/python2.7/dist-packages: autorisation refusée

Après une récente apt-get upgrade sur 16.04, je reçois toujours des erreurs de install-info :

$ Sudo apt-get install -f
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 to upgrade, 0 to newly install, 0 to remove and 1 not to upgrade.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up install-info (6.1.0.dfsg.1-5) ...
/usr/sbin/update-info-dir: 23: /etc/environment: /usr/local/lib/python2.7/dist-packages: Permission denied
dpkg: error processing package install-info (--configure):
 subprocess installed post-installation script returned error exit status 126
Errors were encountered while processing:
 install-info
E: Sub-process /usr/bin/dpkg returned an error code (1)

$ ls -ld /etc/environment /usr/local/lib/python2.7/dist-packages
-rw-r--r--   1 root root  1181 Sep 14 21:08 /etc/environment
drwxrwsr-x 331 root root 20480 Sep 14 15:15 /usr/local/lib/python2.7/dist-packages

EDIT: La ligne que j’ai modifiée [ajoutée] ce mois-ci dans mon /etc/environment était:

PYTHONPATH=/usr/local/lib/python2.7/site-packages;/usr/local/lib/python2.7/dist-packages
5
A T

Les éléments d'une variable PATH doivent être séparés par des deux points.

$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/opt/telegram:/opt/lks-indicator:/snap/bin

Si vous utilisez plutôt un point-virgule, bash interprète la commande après le point-virgule

$ export PATH=$PATH;/home/zanna/playground
bash: /home/zanna/playground: Is a directory

Une illustration plus claire: j'ai ajouté un script qui ne contient que uname -r:

$ export PATH=$PATH;/home/zanna/playground/uname
4.4.0-36-generic

Pour résoudre votre problème, modifiez cette ligne dans /etc/environment

PYTHONPATH=/usr/local/lib/python2.7/site-packages;/usr/local‌​/lib/python2.7/dist-‌​packages

à

PYTHONPATH=/usr/local/lib/python2.7/site-packages:/usr/local‌​/lib/python2.7/dist-‌​packages

Et déconnectez-vous et revenez dans :)

4
Zanna