是什么原因导致错误:EACCES:权限被拒绝,访问'/usr/local/lib/node_modules'?
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! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/usr/local/lib/node_modules' }
npm ERR!
npm ERR! Please try running this command again as root/Administrator.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/macbookmd101/.npm/_logs/2018-02-21T16_26_08_421Z-debug.log
我可以通过安装nvm来解决这个问题,然后将node设置为最新版本。
使用curl安装nvm(最新版本请到nvm.sh)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
列出可用节点版本
nvm ls
v10.12.0
默认值-> v10.12 (-> v10.12.0)
节点->稳定(-> v10.12.0)(默认)
稳定-> 10.12 (> v10.12.0)
...
选择要使用的节点版本
nvm use v10.12
NVM不兼容NPM配置“前缀”选项:当前设置为“”
运行此命令取消设置该选项:
nvm use --delete-prefix v10.12.0
按照上面的命令,你就可以在Ubuntu中安装react/angular了。
如果你在Mac上遇到了这个问题,请遵循以下步骤
首先检查谁是这个文件的所有者使用以下命令
ls -la /usr/local/lib/node_modules
你会在下面找到一些文件其中一个在下面
drwxr-xr-x 3 root wheel 768 May 29 02:21 node_modules
你有没有注意到上面的文件是由root拥有的,为了在里面做改变,你需要改变所有者的路径。
该命令用于检查谁是当前用户
id -un (in my case user is yamsol)
然后您可以通过调用这个命令来更改(只需将您的用户名替换为ownerName)
sudo chown -R ownerName: /usr/local/lib/node_modules
在我的例子中,你知道用户是“yamsol”,我将以这种方式调用这个命令
sudo chown -R yamsol: /usr/local/lib/node_modules
这是它。
注意所有更改/usr/local下所有目录所有者的响应
基本上,不要破坏Linux系统!!
对于本地的东西使用sudo也是一个非常糟糕的建议。
www.competa.com的原始链接被破坏了,所以这是原始的方法:
npm config set prefix ~/.npm
# open your .bashrc (Linux) or .bash_profile (Mac) file for editing:
nano ~/.bashrc # for Linux
# or...
nano ~/.bash_profile # for Mac if you haven't created a .bashrc file
# add these lines:
export PATH="$PATH:$HOME/npm/bin"
export NODE_PATH="$NODE_PATH:$HOME/npm/lib/node_modules"
# save the file and then enter this command or logout and login to make the changes take effect:
. ~/.bashrc
# or...
. ~/.bash_profile
选项B:使用NVM之类的版本管理器