1
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.

Amplify CLIのインストールに失敗する時の対処法

Last updated at Posted at 2022-02-20

###下記のコマンドでAmplify CLIのインストールを試みる。

npm install -g @aws-amplify/cli

##すると、以下のエラーが出現。

npm ERR! code ENOTEMPTY
npm ERR! syscall rename
npm ERR! path /Users/masakazu/.nodebrew/node/v16.14.0/lib/node_modules/@aws-amplify/cli
npm ERR! dest /Users/masakazu/.nodebrew/node/v16.14.0/lib/node_modules/@aws-amplify/.cli-E3waRsVY
npm ERR! errno -66

##試したこと
###npmをアップグレード後、npmのキャッシュをクリアして再インストール

$ npm install -g npm
$ rm -rf node_modules
$ npm cache clean
$ npm install -g @aws-amplify/cli

これで上手く行く人が多いのではないかと思いますが、自分の環境ではまた同じエラーが発生。

###管理者権限でキャッシュの強制クリアを試み、再度インストール

sudo npm cache clean --force
npm install -g @aws-amplify/cli

こちらの方法で解決することができました。
どうやら僕の環境では管理者権限でないとキャッシュをクリアできていなかったようです。

1
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
1
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?