boomchickawawa
boomchickawawa

Reputation: 566

Errors while installing AWS Amplify CLI

Tried installing the CLI with the command given on the official website, this is the response :

npm install -g @aws-amplify/cli
npm WARN deprecated @types/[email protected]: This is a stub types definition. ora provides its own type definitions, so you do not need this installed.
npm WARN deprecated [email protected]: Use uuid module instead
npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
npm WARN @conduitvc/[email protected] requires a peer of leveldown@~1.4.3 but none is installed. You must install peer dependencies yourself.
npm WARN @conduitvc/[email protected] requires a peer of ioredis@^1.15.1 but none is installed. You must install peer dependencies yourself.
npm WARN @conduitvc/[email protected] requires a peer of mongodb@~2.1.4 but none is installed. You must install peer dependencies yourself.

npm ERR! path /usr/local/lib/node_modules
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 ERR!  { [Error: EACCES: permission denied, access '/usr/local/lib/node_modules']
npm ERR!   stack:
npm ERR!    'Error: EACCES: permission denied, access \'/usr/local/lib/node_modules\'',
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/usr/local/lib/node_modules' }
npm ERR! 
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR! 
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).

I have installed the latest versions of node and npm. Fixing this would be really helpful. TIA

Upvotes: 3

Views: 3091

Answers (4)

Oshitha Wimalasuriya
Oshitha Wimalasuriya

Reputation: 451

sudo chown -R $USER:$(id -gn $USER) /Users/user_name/.config

Upvotes: 0

Fmrch
Fmrch

Reputation: 31

I was having the same issue. What worked for me was:

npm uninstall -g @aws-amplify/cli

npm install -g @aws-amplify/cli

Make sure your PC is connected to internet connection during all of this. If possible don't minimize the window, wait until everything is properly installed.

Upvotes: 1

Pierce
Pierce

Reputation: 3158

In my case, I just had to add sudo in front of my command line request on my Mac Command Line:

sudo npm install -g @aws-amplify/cli

Upvotes: 3

boomchickawawa
boomchickawawa

Reputation: 566

Read a blogpost on this similar error and that author suggests to install typescript, which would fix the problem. Followed that advice, installed typescript and installed aws cli and voila! it worked!. No idea how, but it fixed my problem. Curious to know how, if anyone is aware of this please let me know in your answer. TIA

Upvotes: 0

Related Questions