Skip to content

安装服务 npm install 执行失败

执行 npm install 命令失败了,您可以尝试:

  1. 删除 根目录/web/node_modules 和包管理器对应的 锁文件,锁文件名通常是:
    • pnpm-lock.yaml
    • package-lock.json
    • yarn.lock
  2. 推荐使用 pnpmyarn NPM包管理器,安装 pnpm 命令:npm install -g pnpm
  3. 手动执行 pnpm installpnpm build 命令,成功后,再打开安装页面右下角的终端,点击 重新发布 按钮
  4. 若执行失败,请升级 NodeJsNPM
  5. 若还是执行失败,请根据报错信息排除错误后,再继续进行安装。

常见问题

如何设置NPM源?

bash
# 淘宝源
npm config set registry https://registry.npm.taobao.org/

# rednpm源
npm config set registry http://registry.mirror.cqupt.edu.cn/

# npm源
npm config set registry https://registry.npmjs.org/

无法加载文件 ***,因为在此系统上禁止运行脚本。

  1. 管理员身份运行 Windows PowerShell
  2. 执行命令 set-ExecutionPolicy RemoteSigned
  3. 选择 [A] 全是