git上拉取代码后,npm install失败

错误提示:

npm WARN deprecated [email protected]: use String.prototype.padStart()
npm ERR! code 128
npm ERR! Command failed: git clone --mirror -q git://github.com/adobe-webplatform/eve.git E:\nodejs\node_cache\_cacache\tmp\git-clone-1046fff0\.git --config core.longpaths=true
npm ERR! warning: templates not found in C:\Users\yuan\AppData\Local\Temp\pacote-git-template-tmp\git-clone-5d88f4d9
npm ERR! fatal: read error: Invalid argument
npm ERR!

npm ERR! A complete log of this run can be found in:
npm ERR!     E:\nodejs\node_cache\_logs\2020-05-22T05_19_56_120Z-debug.log

解决办法:

//先执行以下命令,再进行npm install
git config --global url."https://".insteadOf git://


npm install

 

你可能感兴趣的:(分享)