npm install common error resolution

one,

C:\workplace\workspace-ODN\pdnms-front>npm install
npm ERR! Error while executing:
npm ERR! C:\Program Files\Git\cmd\git.EXE ls-remote -h -t https://github.com/openplans/Leaflet.AnimatedMarker.git 

npm ERR!
npm ERR! fatal: unable to access 'https://github.com/openplans/Leaflet.AnimatedMarker.git/ 

': error setting certificate verify locations:
npm ERR!   CAfile: E:/Program Files/Git/mingw32/ssl/certs/ca-bundle.crt
npm ERR!   CApath: none
npm ERR!
npm ERR! exited with error code: 128

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\arvin\AppData\Roaming\npm-cache\_logs\2017-11-21T10_24_49_985Z-debug.log 


Solution:

                git config --global http.sslverify "false"                      

                After execution, re-npm install

Again:

The above problem is caused by network access to github during installation. Analyze the specific problem in detail and see which component is pointed to in the error report. The network may be connected when using this method, but it may not always be available.

Guess you like

Origin blog.csdn.net/qq_48294048/article/details/125409131
Recommended