运行 npx create next app 时出现节点错误

问题描述 投票:0回答:1

我正在尝试使用 npx 创建下一个项目,但出现错误 npm 错误代码 ENOENT npm 错误系统调用 lstat npm 错误路径 C:\Users\LENOVO\AppData\Roaming 下午 npm 错误 errno -4058 npm 错误 enoent ENOENT:没有这样的文件或目录,lstat 'C:\Users\LENOVO\AppData\Roaming 下午' npm error enoent 这与 npm 找不到文件有关。 npm 错误 enoent

我试图使用 npx create next app 创建下一个项目

javascript node.js package dependencies next.js13
1个回答
0
投票

尝试清除 npm 缓存 清除 npm 缓存。

运行 npm cache clean --force

重新安装 npm:

以管理员身份打开命令提示符或终端。

全局卸载 npm。

奔跑

npm卸载-g npm

然后

重新安装 npm。

运行 npm install -g npm

© www.soinside.com 2019 - 2024. All rights reserved.