运行 npm install 命令安装依赖包,在 Mac 上的 Vagrant 装的虚拟机上没问题,在阿里云 CentOS 上也没问题,但是在 Windows 环境同样是 Vagrant 装的环境相同的虚拟机上就是不成功,报错如下:
npm ERR! Error: EPERM: operation not permitted, rename ‘/usr/share/nginx/html/tanteng.me/node_modules/duplexify’ -> ‘/usr/share/nginx/html/tanteng.me/node_modules/.duplexify.DELETE’
operation-permitted
之前遇到过 Windows 上 npm 安装依赖出现 symbol 的错误,解决方法是 sudo npm install –no-bin-links,加后面的参数即可。
列出 Node.js 的安装目录,目录的权限属性如图:
npm-chown
这里执行命令:
sudo chown vagrant:vagrant n node npm
记住还要清除 npm 缓存:
npm cache clean
再次执行 sudo npm install –no-bin-links,Windows 环境下即使是在虚拟机也需要带上后面的参数。
这个时候问题解决。
时间: 2024-10-31 01:15:14