尝试安装VITE以使用React,但返回npm错误

ygya80vv  于 11个月前  发布在  React
关注(0)|答案(1)|浏览(237)

这是NPM在我的终端上返回的错误:

PS C:\Users\hp pavilion\Desktop\bank_modern_app> npm create vite@latest
npm ERR! code ENOENT
npm ERR! syscall getaddrinfo
npm ERR! errno ENOENT
npm ERR! enoent request to https://registry.npmjs.org/create-vite failed, reason: getaddrinfo ENOENT registry.npmjs.org
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent 

npm ERR! A complete log of this run can be found in: C:\Users\hp pavilion\AppData\Local\npm-cache\_logs\2023-11-25T12_33_45_682Z-debug-0.log
PS C:\Users\hp pavilion\Desktop\bank_modern_app>

字符串
我尝试使用“npm create vite@latest”安装VITE以使用React,但它返回npm ERROR。
我打算使用VITE安装React。如何解决这个问题?

dnph8jn4

dnph8jn41#

您可以按照以下步骤操作:

$ npm config set proxy http://your.proxy.url:port
$ npm config set https-proxy http://your.proxy.url:port

字符串
此问题可能是由于损坏的npm缓存造成的。请尝试清除该高速缓存:

$ npm cache clean -f
$ npm install -g npm@latest
$ npm create vite@latest

相关问题