C:\Users\Lenovo>npm install trax-server -g npm notice npm notice New minor version of npm available! 9.5.1 -> 9.6.7 npm notice Changelog: https://github.com/npm/cli/releases/tag/v9.6.7 npm notice Run npm install -g npm@9.6.7 to update! npm notice npm ERR! code E404 npm ERR! 404 Not Found - GET https://registry.npmjs.org/trax-server - Not found npm ERR! 404 npm ERR! 404 'trax-server@*' is not in this registry. npm ERR! 404 npm ERR! 404 Note that you can also install from a npm ERR! 404 tarball, folder, http url, or git url. npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Lenovo\AppData\Local\npm-cache\_logs\2023-06-02T07_11_08_467Z-debug-0.log C:\Users\Lenovo>trax-server --port=8000 'trax-server' 不是内部或外部命令,也不是可运行的程序 或批处理文件。
时间: 2023-09-24 11:05:04 浏览: 152
npm install 报警告npm WARN
5星 · 资源好评率100%
根据你提供的命令行输出结果,可以看出安装 trax-server 失败了,返回了 404 错误码。这可能是因为 trax-server 这个包在 npm registry 中没有找到。你可以尝试使用其他的 npm registry 进行安装,或者检查你的网络连接,确保能够正常访问 npm registry。而后面的命令"trax-server --port=8000"在安装失败的情况下也不会执行成功,因为该命令需要先安装 trax-server 这个包才能使用。
阅读全文