Node.js 安装AWS Amplify CLI时出错

Node.js 安装AWS Amplify CLI时出错,node.js,amazon-web-services,npm,command-line-interface,aws-amplify,Node.js,Amazon Web Services,Npm,Command Line Interface,Aws Amplify,尝试使用官方网站上给出的命令安装CLI,以下是响应: npm install -g @aws-amplify/cli npm WARN deprecated @types/ora@3.2.0: This is a stub types definition. ora provides its own type definitions, so you do not need this installed. npm WARN deprecated node-uuid@1.4.8: Use uuid

尝试使用官方网站上给出的命令安装CLI,以下是响应:

npm install -g @aws-amplify/cli
npm WARN deprecated @types/ora@3.2.0: This is a stub types definition. ora provides its own type definitions, so you do not need this installed.
npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
npm WARN @conduitvc/mosca@2.8.3 requires a peer of leveldown@~1.4.3 but none is installed. You must install peer dependencies yourself.
npm WARN @conduitvc/mosca@2.8.3 requires a peer of ioredis@^1.15.1 but none is installed. You must install peer dependencies yourself.
npm WARN @conduitvc/mosca@2.8.3 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).

我已经安装了node和npm的最新版本。解决这个问题会非常有帮助。TIA阅读了一篇关于类似错误的博客文章,作者建议安装typescript,这将解决问题。按照这个建议,安装了typescript和aws cli,瞧!成功了!。不知道怎么做,但它解决了我的问题。好奇地想知道如何,如果有人知道这一点,请让我知道你的答案。TIA

在我的例子中,我只需在Mac命令行的命令行请求前面添加
sudo

sudo npm安装-g@aws-amplify/cli

可能重复的