21
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

npm でエラーが発生しているときはキャッシュを消すと上手くいくことも。

Last updated at Posted at 2018-09-01

node.jsで足りないmoduleをインストールするコマンドをインストールしてみる
これ↑をやろうとしたら、
エラー続きで絶望。

##状況
1.windowsにubuntuをインストール!
2.node.jsを入れる(nvm)
3.npmを入れる(上手く入ってなかったかも?)
4.nodeのバージョンを変えたい

$ node use 8.11.4 
module.js:549
  throw err;

  →冒頭の記事へ。

##上手くいかなかったやり方
人によってはこれで解決するかも?
それで、この辺を試してみる。
npm installでError:EACCESがでたら
npmでpermission deniedになった時の対処法[mac]

上手くいかない…。
自分の場合、
①のほうではディレクトリがusr/localだったのでその方法を試すも
"no such directly"で追い返される。
②のほうを試すも同様にno such directly...

##上手くいったやり方

$ npm cache clean -f

入力してみると…

npm WARN using --force I sure hope you know what you are doing.

これでエラーから解放されました。
めでたしめでたし。

何が問題なのかわかる方、
客観的視点もいただけると幸いです。

21
20
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?