npm ERR! code ENOENT npm ERR! syscall open npm ERR! path C:\Users\Administrator/package.json npm ERR! errno -4058 npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\Administrator\package.json' 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: npm ERR! E:\Node.js\node_cache\_logs\2023-06-06T07_08_54_677Z-debug-0.log C:\Users\Administrator>
时间: 2023-09-20 11:14:20 浏览: 179
npm ERR! code EPERM npm ERR! syscall open npm ERR! path C:\Program Files\nodejs\node_cache\_cacache\
5星 · 资源好评率100%
这个错误提示是因为在您当前的目录下找不到 package.json 文件,而 package.json 文件是 Node.js 项目的配置文件,npm 安装依赖时需要依赖这个文件。建议您检查一下当前目录下是否存在 package.json 文件,如果不存在,需要先创建一个新的 Node.js 项目并在项目根目录下执行 npm init 命令来生成 package.json 文件。如果已经存在 package.json 文件,那么可能是路径错误,需要检查一下执行 npm 命令的路径是否正确。
阅读全文