当我要使用时创建新的角度项目。发生此错误。请问各位,请告诉我如何解决这个问题。
e$ ng new angular-the-basics
create angular-the-basics/e2e/app.e2e-spec.ts (300 bytes)
create angular-the-basics/e2e/app.po.ts (208 bytes)
create angular-the-basics/e2e/tsconfig.e2e.json (235 bytes)
create angular-the-basics/karma.conf.js (923 bytes)
create angular-the-basics/package.json (1302 bytes)
create angular-the-basics/protractor.conf.js (722 bytes)
create angular-the-basics/README.md (1032 bytes)
create angular-the-basics/src/app/app.component.css (0 bytes)
Installing packages for tooling via npm.
npm WARN deprecated nodemailer@2.7.2: All versions below 4.0.1 of Nodemailer are deprecated. See https://nodemailer.com/status/
npm WARN deprecated uws@9.14.0: stop using this version
npm WARN ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: httpntlm@1.6.1 (node_modules\httpntlm):
npm WARN network SKIPPING OPTIONAL DEPENDENCY: request to https://registry.npmjs.org/httpntlm/-/httpntlm-1.6.1.tgz failed, reason: getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: escodegen@1.9.1 (node_modules\escodegen):
npm WARN network SKIPPING OPTIONAL DEPENDENCY: request to https://registry.npmjs.org/escodegen/-/escodegen-1.9.1.tgz failed, reason: getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org:443
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: uglify-to-browserify@1.0.2 (node_modules\uglify-to-browserify):
npm WARN enoent SKIPPING OPTIONAL DEPENDENCY: ENOENT: Cannot cd into 'D:\Git\angular-project\angular-the-basics\node_modules\.staging\uglify-to-browserify-f9ddd93a'
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: degenerator@1.0.4 (node_modules\degenerator):
npm WARN enoent SKIPPING OPTIONAL DEPENDENCY: ENOENT: Cannot cd into 'D:\Git\angular-project\angular-the-basics\node_modules\.staging\degenerator-b0b187d9'
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: optionator@0.8.2 (node_modules\optionator):
npm WARN enoent SKIPPING OPTIONAL DEPENDENCY: ENOENT: Cannot cd into 'D:\Git\angular-project\angular-the-basics\node_modules\.staging\optionator-d20f57c5'
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: pac-resolver@3.0.0 (node_modules\pac-resolver):
npm WARN enoent SKIPPING OPTIONAL DEPENDENCY: ENOENT: Cannot cd into 'D:\Git\angular-project\angular-the-basics\node_modules\.staging\pac-resolver-ce15981e'
npm ERR! code ENOTFOUND
npm ERR! errno ENOTFOUND
npm ERR! network request to https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz failed, reason: getaddrinfo ENOTFOUND registry.npmjs.org registry.npmjs.org: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\lilan\AppData\Roaming\npm-cache\_logs\2018-05-21T07_33_59_772Z-debug.log
Package install failed, see above.
Package install failed, see above.
node -v
V9.4.0
npm -v
5.6.0
ng -v
Angular CLI:1.6.6 操作系统:win32 x64
答案 0 :(得分:4)
我不知道它是否可以解决您的问题,但是您可以尝试一下,它对我有用:
npm
中手动删除目录npm-cache
和...AppData/Roaming
npm cache clean --force
npm install -g @angular/cli
做得好=)
答案 1 :(得分:1)
我的错误是: npm 错误!可以在以下位置找到此运行的完整日志: npm 错误! C:\Users\SHILPA\AppData\Roaming\npm-cache_logs\2020-12-28T22_23_22_383Z-debug.log
解决方案:
快乐黑客!!!!!!
答案 2 :(得分:1)
必须遵循的步骤:
1-删除package-lock.json
文件。
2-安装您的软件包
3-运行您的项目命令
答案 3 :(得分:1)
在终端上使用以下命令:
-delete node modules and package-lock.json
yarn install or npm install
npm start
答案 4 :(得分:0)
下面列出的一些步骤解决了该错误
1->在编辑器中打开项目文件夹
2->右键单击您的项目,然后选择“在终端中打开”
3->在控制台中显示您的路径,然后键入npm start
您的项目开发始于浏览器
谢谢...
答案 5 :(得分:0)
可以在以下位置找到此运行的完整日志:npm ERR! C:\Users\jems bond\AppData\Roaming\npm-cache_logs\2021-03-27T14_40_47_500Z-debug.log 软件包安装失败,见上文。
我也出现了同样的错误,所以我解决了以下方法:
step-1} 从您的漫游目录中删除您的 npm-cache 文件夹,例如:
C:\Users\jems bond\AppData\Roaming
step-2} 接下来转到您要创建新文件夹的目录
step-3} 运行以下命令
npm install
step-4} 创建您的项目
ng new myNewApp
希望你的错误得到解决,谢谢。
答案 6 :(得分:0)
我也为此问题苦苦挣扎了几分钟,但后来我注意到我不在我的项目文件夹内,而是强行尝试在项目文件夹外运行项目。 确保您位于项目文件夹中并运行命令。
答案 7 :(得分:0)
如果您在Linux或Unix之类的os上运行,那么这是因为您必须在这样的root特权下运行此命令-
sudo npm install yourpackage
答案 8 :(得分:0)
我也遇到了同样的错误,但是希望在此错误上花了1天后,我已经有了这个解决方案,并且它已经完美启动,我也希望这对你们也有用...
答案 9 :(得分:0)
删除此文件夹“ npm-cache” 路径:C:\ NODEJS \ npm-cache 然后在C:\中创建一个文件夹 打开命令提示符C:\ angular> 这是我的文件夹名称 然后安装软件包npm install @ angular / cli -g 然后稍后ng new Hello 你好是我的项目名称
答案 10 :(得分:0)
我尝试 sudo npm start 时遇到了同样的问题....
答案 11 :(得分:0)
npm缓存清理--force 完成后,您可以运行npm install
答案 12 :(得分:0)
首先,您需要清除npm缓存。
运行此命令以清除npm缓存npm cache clean --force
然后使用npm install
重新安装npm
现在,使用npm start
或其他基于您使用的框架的项目来运行您的项目。谢谢!
答案 13 :(得分:0)
npm cache clean --force 只需在命令行中添加此命令,然后开始工作即可。它对我有用。
答案 14 :(得分:0)
首先从Visual Studio代码启动服务器,然后在编译之后从命令提示符中使用“ npm run build”。通过这样做,问题得以解决。它有效地打包了React Underway模式,并改进了工作以实现最佳执行。
答案 15 :(得分:0)
在安装/添加一些插件后,npm运行停止并再次启动时出现相同的问题 但这是通过将项目复制并粘贴到其他文件夹并从该位置打开并运行它来解决的
答案 16 :(得分:0)
如果您使用的是Mac,请使用
rm package-lock.json
供窗口用户使用
del package-lock.json
那之后就运行
npm安装
希望会有所帮助。祝你好运