【npm】常见错误

1.安装模块错误 

错误内容
npm ERR! code EPERM
npm ERR! syscall mkdir
npm ERR! path E:\Program Files\nodejs\node_modules\live-server
npm ERR! errno -4048
npm ERR! Error: EPERM: operation not permitted, mkdir 'E:\Program Files\nodejs\node_modules\live-server'
npm ERR!  [Error: EPERM: operation not permitted, mkdir 'E:\Program Files\nodejs\node_modules\live-server'] {
npm ERR!   errno: -4048,
npm ERR!   code: 'EPERM',
npm ERR!   syscall: 'mkdir',
npm ERR!   path: 'E:\\Program Files\\nodejs\\node_modules\\live-server'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It's possible that the file was already in use (by a text editor or antivirus),
npm ERR! or that you lack permissions to access it.
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\root\AppData\Local\npm-cache\_logs\2022-02-28T03_08_09_983Z-debug.log


解决方法
npm安装模块的时候需要使用管理员权限

安装vite时候操作失败
npm ERR! code ETIMEDOUT
npm ERR! syscall connect
npm ERR! errno ETIMEDOUT
npm ERR! network request to https://registry.npmjs.org/create-vite failed, reason: connect ETIMEDOUT 104.16.20.35:443
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly.  See: 'npm help config'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\root\AppData\Local\npm-cache\_logs\2022-11-17T09_32_07_433Z-debug-0.log


解决方法
## 清理代理

npm config set proxy null

## 清理缓存

npm cache clean --force

## 重新设置国内淘宝镜像

npm config set registry https://registry.npm.taobao.org

安装n错误 

npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for n@9.0.1: wanted {"os":"!win32"} (current: {"os":"win32","arch":"x64"})
npm ERR! notsup Valid OS:    !win32
npm ERR! notsup Valid Arch:  undefined
npm ERR! notsup Actual OS:   win32
npm ERR! notsup Actual Arch: x64

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\root\AppData\Local\npm-cache\_logs\2022-11-17T10_02_01_299Z-debug-0.log

 解决方法

npm install --force

相关推荐

  1. npm常见错误

    2024-02-21 06:56:01       59 阅读
  2. npm常见错误

    2024-02-21 06:56:01       55 阅读
  3. nvm 错误

    2024-02-21 06:56:01       30 阅读
  4. npm ERP! 错误【已解决】

    2024-02-21 06:56:01       90 阅读
  5. npm install 出现canvas错误

    2024-02-21 06:56:01       18 阅读
  6. PHP常见错误

    2024-02-21 06:56:01       50 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-02-21 06:56:01       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-02-21 06:56:01       100 阅读
  3. 在Django里面运行非项目文件

    2024-02-21 06:56:01       82 阅读
  4. Python语言-面向对象

    2024-02-21 06:56:01       91 阅读

热门阅读

  1. 分布式场景怎么Join | 京东云技术团队

    2024-02-21 06:56:01       53 阅读
  2. 使用单元测试框架Junit的正确姿势

    2024-02-21 06:56:01       44 阅读
  3. SQL-2

    SQL-2

    2024-02-21 06:56:01      51 阅读
  4. 电商数据API接口

    2024-02-21 06:56:01       57 阅读
  5. 士兰微六轴陀螺仪SC7I22在AR/VR头显设备中的应用

    2024-02-21 06:56:01       45 阅读
  6. jupyter/scipy-notebook:python3.8 docker 镜像

    2024-02-21 06:56:01       51 阅读