4 回答
TA贡献1842条经验 获得超21个赞
TA贡献1840条经验 获得超5个赞
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 error
gyp ERR! stack Error: Can't find Python executable "python", you can set the PYT
HON env variable.
gyp ERR! stack at failNoPython (D:\Program Files\nodejs\node_modules\npm\nod
e_modules\node-gyp\lib
TA贡献1804条经验 获得超7个赞
1、如果你的项目里存在 package-lock.json 文件,删除它。并且删除 node_modules。然后再 npm install。
2、第一步不行的话。运行 npm cache clean --force 或者 npm cache verify 。然后再 npm install。
3、如果上面的都不行,就升级 npm 。 npm i -g npm
TA贡献2011条经验 获得超2个赞
可以通过一劳永逸的方式修改代理地址 2.更换npm源拼rp 环境确认 1.确定一下你的npm config情况 npm config ls 2.详解 1.npm默认源地址 2.用户配置文件所在地址 3.代理服务器 4.用户配置的源地址 修改方案 1.土鳖式 修改npm用户配置文件
添加回答
举报