簡體   English   中英

NPM安裝顯示錯誤

[英]NPM install shows error

我曾嘗試卸載並重新安裝我使用過的angular cli,

sudo npm uninstall -g @angular/cli
sudo npm install -g @angular/cli

每當我給npm安裝時,它就會顯示錯誤,

npm ERR! Unexpected token < in JSON at position 1 while parsing near '
npm ERR! <!doctype html>
npm ERR! <htm...'

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/izchnl050/.npm/_logs/2018-08-07T08_02_19_674Z-debug.log

日志文件包含以下內容:

0 info it worked if it ends with ok
1 verbose cli [ '/usr/bin/node',
1 verbose cli   '/usr/bin/npm',
1 verbose cli   'install',
1 verbose cli   '-g',
1 verbose cli   '@angular/cli' ]
2 info using npm@6.2.0
3 info using node@v10.8.0
4 verbose npm-session 6b584ff5794304f7
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 http fetch GET 200 https://www.npmjs.com/@angular%2fcli 1450ms (from cache)
8 silly fetchPackageMetaData error for @angular/cli@latest Unexpected token < in JSON at position 1 while parsing near '
8 silly fetchPackageMetaData <!doctype html>
8 silly fetchPackageMetaData <htm...'
9 timing stage:rollbackFailedOptional Completed in 1ms
10 timing stage:runTopLevelLifecycles Completed in 1690ms
11 verbose stack SyntaxError: Unexpected token < in JSON at position 1 while parsing near '
11 verbose stack <!doctype html>
11 verbose stack <htm...'
11 verbose stack     at JSON.parse (<anonymous>)
11 verbose stack     at parseJson (/usr/lib/node_modules/npm/node_modules/json-parse-better-errors/index.js:7:17)
11 verbose stack     at consumeBody.call.then.buffer (/usr/lib/node_modules/npm/node_modules/node-fetch-npm/src/body.js:96:50)
11 verbose stack     at process._tickCallback (internal/process/next_tick.js:68:7)
12 verbose cwd /home/izchnl050
13 verbose Linux 4.15.0-29-generic
14 verbose argv "/usr/bin/node" "/usr/bin/npm" "install" "-g" "@angular/cli"
15 verbose node v10.8.0
16 verbose npm  v6.2.0
17 error Unexpected token < in JSON at position 1 while parsing near '
17 error <!doctype html>
17 error <htm...'
18 verbose exit [ 1, true ]

根據其他解決方案,嘗試了以下方法,

npm cache clean --force

卸載節點,然后再次安裝節點,但沒有用。

如果我給npm安裝它每次都會顯示上述錯誤。

npm -v = 6.2.0
node -v = v10.8.0

請幫助我解決此問題並繼續進行工作流程。

嘗試刪除package.lock文件

可能重復的安裝錯誤:JSON中的位置<的意外令牌<

package-lock.json is automatically generated for any operations where npm modifies either the node_modules tree, or package.json. It describes the exact tree that was generated, such that subsequent installs are able to generate identical trees, regardless of intermediate dependency updates.

刪除package-lock.json,然后運行npm install

然后,您可以使用npm安裝任何所需的插件。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM