github上拉去代码执行 npm install报错code:128

今天项目刚从github拉取的,但是报错,具体报错信息如下:

` npm ERR! code 128

npm ERR! Command failed: git clone --mirror -q git://github.com/adobe-webplatform/eve.git C:\Users\javadev1\AppData\Roaming\npm-cache\_cacache\tmp\git-clone-d285df55\.git --config core.longpaths=true
npm ERR! warning: templates not found in C:\Users\javadev1\AppData\Local\Temp\pacote-git-template-tmp\git-clone-3fb16f2c
npm ERR! fatal: read error: Invalid argument
npm ERR!

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\javadev1\AppData\Roaming\npm-cache\_logs\2020-05-29T08_23_04_169Z-debug.log 

解决办法:

第一步执行:git config --global url.“https://”.insteadOf git://
第二步执行:npm i
第二步执行:npm run dev

 就这样解决了 !!!!!!!

你可能感兴趣的:(vue)