0
0

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 1 year has passed since last update.

npm ERR! の対処法

Last updated at Posted at 2023-01-24

npm ERR! の対処法

本記事では、npm install -g yarn実行時に発生したnpm ERR!の対処法についての備忘録を残す。
スクリーンショット 2023-01-14 12.47.58.png

試したこと

1.permission deniedと出力されたので、cdコマンドでnode_modulesディレクトリに移動

2.sudo chown -R info /usr/local/lib/node_modules/実行によって権限を与える

コマンド 意味
chown ファイルの所有者やグループを変更するコマンド
-Rオプション カレントディレクトリ配下のファイルやディレクトリの所有者を変更
info 自身のユーザ名
/usr/local/lib/node_modules/ 権限を付与させたいファイルへのパス

無事インストール完了

これでインストールすることに成功した。
スクリーンショット 2023-01-14 13.07.25.png

参考文献

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?