Étapes à suivre pour répliquer:
Ubuntu 16.04 xenial (x86-64)
Sudo apt-get update
Sudo apt-get install nodejs
Sudo apt-get install npm
Je veux désinstaller nodejs
et npm
et j'ai vu plusieurs publications suggérant qu'il s'agit du moyen le plus courant:
Sudo apt-get purge --auto-remove nodejs
Cependant, cela produit une invite qui semble faire référence à des dépendances qui, si elles étaient supprimées, semblaient causer des problèmes.
Quel est le meilleur moyen "d'annuler" l'installation de nodejs
et npm
?
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
gyp* libboost-python1.58.0* libjs-inherits* libjs-node-uuid*
libjs-underscore* libssl-dev* libssl-doc* libuv1* libuv1-dev*
linux-headers-4.4.0-18* linux-headers-4.4.0-18-generic*
linux-headers-4.4.0-21* linux-headers-4.4.0-21-generic*
linux-image-4.4.0-18-generic* linux-image-4.4.0-21-generic*
linux-image-extra-4.4.0-18-generic* linux-image-extra-4.4.0-21-generic*
linux-signed-image-4.4.0-18-generic* linux-signed-image-4.4.0-21-generic*
node-abbrev* node-ansi* node-ansi-color-table* node-archy* node-async*
node-block-stream* node-combined-stream* node-cookie-jar*
node-delayed-stream* node-forever-agent* node-form-data* node-fstream*
node-fstream-ignore* node-github-url-from-git* node-glob* node-graceful-fs*
node-gyp* node-inherits* node-ini* node-json-stringify-safe* node-lockfile*
node-lru-cache* node-mime* node-minimatch* node-mkdirp* node-mute-stream*
node-node-uuid* node-nopt* node-normalize-package-data* node-npmlog*
node-once* node-osenv* node-qs* node-read* node-read-package-json*
node-request* node-retry* node-rimraf* node-semver* node-sha* node-sigmund*
node-slide* node-tar* node-tunnel-agent* node-underscore* node-which*
nodejs* nodejs-dev* npm* python-configobj* python-pycurl* python-pyexiv2*
python-pyexiv2-doc*
0 to upgrade, 0 to newly install, 72 to remove and 0 not to upgrade.
After this operation, 631 MB disk space will be freed.
Do you want to continue? [Y/n]
Edit:
Voici le résultat de Sudo apt-get purge nodejs
:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
gyp libboost-python1.58.0 libjs-inherits libjs-node-uuid libjs-underscore
libssl-dev libssl-doc libuv1 libuv1-dev linux-headers-4.4.0-18
linux-headers-4.4.0-18-generic linux-headers-4.4.0-21
linux-headers-4.4.0-21-generic linux-image-4.4.0-18-generic
linux-image-4.4.0-21-generic linux-image-extra-4.4.0-18-generic
linux-image-extra-4.4.0-21-generic linux-signed-image-4.4.0-18-generic
linux-signed-image-4.4.0-21-generic python-configobj python-pycurl
python-pyexiv2 python-pyexiv2-doc
Use 'Sudo apt autoremove' to remove them.
The following packages will be REMOVED:
node-abbrev* node-ansi* node-ansi-color-table* node-archy* node-async*
node-block-stream* node-combined-stream* node-cookie-jar*
node-delayed-stream* node-forever-agent* node-form-data* node-fstream*
node-fstream-ignore* node-github-url-from-git* node-glob* node-graceful-fs*
node-gyp* node-inherits* node-ini* node-json-stringify-safe* node-lockfile*
node-lru-cache* node-mime* node-minimatch* node-mkdirp* node-mute-stream*
node-node-uuid* node-nopt* node-normalize-package-data* node-npmlog*
node-once* node-osenv* node-qs* node-read* node-read-package-json*
node-request* node-retry* node-rimraf* node-semver* node-sha* node-sigmund*
node-slide* node-tar* node-tunnel-agent* node-underscore* node-which*
nodejs* nodejs-dev* npm*
0 to upgrade, 0 to newly install, 49 to remove and 0 not to upgrade.
After this operation, 27.6 MB disk space will be freed.
Do you want to continue? [Y/n]
Vu de la sortie de:
Sudo apt-get purge nodejs
il ne fait que supprimer les packages associés à node
, c'est-à-dire les packages pertinents, rien de plus.
D'autre part, quand vous faites:
Sudo apt-get purge --auto-remove nodejs
c'est forcément faire:
Sudo apt-get purge nodejs
Sudo apt-get autoremove
et la suppression des packages gyp
__, linux-headers-4.4.0-18-generic
__cet etc est en réalité déclenchée par autoremove
car ils ont été installés en tant que dépendances et ne sont plus nécessaires pour aucun package installé, probablement parce que le package principal a été supprimé.
Il est donc parfaitement approprié dans ce contexte de lancer:
Sudo apt-get purge --auto-remove nodejs
Si vous êtes trop paranoïaque, vous pouvez le faire en deux étapes: d'abord purge nodejs
:
Sudo apt-get purge nodejs
puis supprimez les dépendances Orphan (jusqu'à présent, le cas échéant):
Sudo apt-get autoremove
Pour supprimer les nœuds js, npm et node_modules d’Ubuntu, vous devez également supprimer les conteneurs se trouvant à des emplacements différents dans Ubuntu. Ceux-ci pourraient être comme:
/usr/local/bin/npm
, /usr/local/share/man/man1/node
, /usr/local/lib/dtrace/node.d
, ~/.npm ~/.node-gyp
, /opt/local/bin/node
, opt/local/include/node
, /opt/local/lib/node_modules
Je l'ai fait avec succès. Donc, je partage la procédure complète
Vous devez suivre les étapes décrites dans http://amcositsupport.blogspot.in/2016/07/to-completely-uninstall-node-js-from.html
Sudo apt-get remove nodejs
Sudo apt-get remove npm
Ensuite, allez à /etc/apt/sources.list.d
et supprimez toute liste de nœuds, le cas échéant. Alors fais un
Sudo apt-get update
Recherchez tout dossier .npm ou .node dans votre dossier personnel et supprimez-les.
Si vous tapez
which node
vous pouvez voir l'emplacement du noeud. Essayez aussi which nodejs
et which npm
.
Je recommanderais d'installer le noeud à l'aide de Node Version Manager (NVM). Cela m'a évité beaucoup de maux de tête. Parce que vous pouvez installer nodejs et npm sans Sudo à l’aide de NVM.