web-dev-qa-db-ja.com

破損したNPMをアンインストールする方法は?

質問は単純であり、解決策は単純でなければなりません。私の問題に関する詳細。チェックnpm

~ npm -version
>> 4.0.5
~ which npm
>> /usr/local/bin/npm

アンインストールしてみてください:

~ Sudo apt-get remove npm
>> Package 'npm' is not installed, so not removed

それではない場合よりもインストールしてみましょう:

~ Sudo apt-get install npm
npm: Depends: nodejs but it will not be installed
       Depends: node-abbrev (> = 1.0.4) but it is not installed
       Depends: node-ansi but it will not be installed
       Depends: node-archy but it will not be installed
       Depends: node-block-stream but it will not be installed
       Depends: node-fstream (> = 0.1.22) but it is not installed
       Depends: node-fstream-ignore but it is not installed
       Depends: node-github-url-from-git but he will not be installed
       Depends: node-glob (> = 3.1.21) but it is not installed
       Depends: node-graceful-fs (> = 2.0.0) but it is not installed
       Depends: node-inherits but it will not be installed
       Depends: node-ini (> = 1.1.0) but it is not installed
       Depends: node-lockfile but it will not be installed
       Depends: node-lru-cache (> = 2.3.0) but it is not installed
       Depends: node-minimatch (> = 0.2.11) but it is not installed
       Depends: node-mkdirp (> = 0.3.3) but it is not installed
       Depends: node-gyp (> = 0.10.9) but it will not be installed
       Depends: node-nopt (> = 2.1.1) but it is not installed
       Depends: node-npmlog but it will not be installed
       Depends: node-once but it will not be installed
       Depends: node-osenv but it will not be installed
       Depends: node-read but it is not installed
       Depends: node-read-package-json (> = 1.1.0) but it is not installed
       Depends: node-request (> = 2.25.0) but it will not be installed
       Depends: node-retry but it will not be installed
       Depends: node-rimraf (> = 2.2.2) but it is not installed
       Depends: node-semver (> = 2.1.0) but it is not installed
       Depends: node-sha but it will not be installed
       Depends: node-slide but it will not be installed
       Depends: node-tar (> = 0.1.18) but it is not installed
       Depends: node-which but it will not be installed
E: Unable to correct problems, you have delayed (held) broken packages.

したがって、インストールもアンインストールもできません。 heldを見てみましょう

~ dpkg --get-selections | grep hold
>> [no results]

nodejs:

~ nodejs -v
>> v0.12.18

NPMを削除できず、更新もできません。解決策はありますか?


詳細を追加します。

npm uninstall npm -g

最後の多くのログとエラー:

- [email protected] node_modules/npm
npm ERR! Linux 3.13.0-37-generic
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "uninstall" "npm" "-g"
npm ERR! node v7.4.0
npm ERR! npm  v4.0.5
npm ERR! path /usr/local/lib/node_modules/npm/node_modules/abbrev
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access

npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules/npm/node_modules/abbrev'
npm ERR!  { Error: EACCES: permission denied, access '/usr/local/lib/node_modules/npm/node_modules/abbrev'
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/usr/local/lib/node_modules/npm/node_modules/abbrev' }
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.

npm ERR! Please include the following file with any support request:
npm ERR!     /media/storage/development/projects/web/angular-app/npm-debug.log
1
Sergii

Sudo npm uninstall npm -gでアンインストールします

2
13dimitar