-
慕桂英3389331
如图,应该是你没有/usr/local/lib/路径的访问(写入)权限,解决办法也说了:1、确认一下你使用的用户是否有该目录的权限2、使用root(管理员)账号再试一次备注:或Administrator应该是考虑也有windows下使用npm的情况
-
江户川乱折腾
Windows环境下npm install安装包依赖时,常出现一些错误,下面为个人解决办法:错误一缺少python环境:复制代码G:\nodejs\moviesite\node_modules\bcrypt>if not defined npm_config_node_gyp (node"D:\Program Files\nodejs\node_modules\npm\bin\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (rebuild)gyp ERR! configure errorgyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable.gyp ERR! stack at failNoPython (D:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib
-
呼啦一阵风
1、如果你的项目里存在 package-lock.json 文件,删除它。并且删除 node_modules。然后再 npm install。2、第一步不行的话。运行 npm cache clean --force 或者 npm cache verify 。然后再 npm install。3、如果上面的都不行,就升级 npm 。 npm i -g npm