ipfs-shipyard / npm-on-ipfs

:package: Install npm modules through IPFS!
MIT License
468 stars 40 forks source link

npm WARN deprecated #117

Open kyzitemelos opened 5 years ago

kyzitemelos commented 5 years ago

Getting error while installing:

C:\WINDOWS\system32>npm i ipfs-npm -g npm WARN deprecated boom@7.3.0: This module has moved and is now available at @hapi/boom. Please update your dependencie s as this version is no longer maintained an may contain bugs and security issues. npm WARN deprecated hoek@6.1.3: This module has moved and is now available at @hapi/hoek. Please update your dependencie s as this version is no longer maintained an may contain bugs and security issues. npm ERR! code ENOENT npm ERR! syscall spawn git npm ERR! path git npm ERR! errno ENOENT npm ERR! enoent Error while executing: npm ERR! enoent undefined ls-remote -h -t ssh://git@github.com/hugomrdias/concat-stream.git npm ERR! enoent npm ERR! enoent npm ERR! enoent spawn git ENOENT npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\USER\AppData\Roaming\npm-cache_logs\2019-09-30T09_03_45_372Z-debug.log

C:\WINDOWS\system32> 2019-09-30T09_03_45_372Z-debug.log

achingbrain commented 5 years ago

Do you have git installed?

kyzitemelos commented 5 years ago

Yes, I do.

achingbrain commented 5 years ago

The snippet below means npm can't find it, so it's probably not on your path.

npm ERR! code ENOENT
npm ERR! syscall spawn git
npm ERR! path git
npm ERR! errno ENOENT
npm ERR! enoent Error while executing:
npm ERR! enoent undefined ls-remote -h -t ssh://git@github.com/hugomrdias/concat-stream.git
npm ERR! enoent
npm ERR! enoent
npm ERR! enoent spawn git ENOENT
npm ERR! enoent This is related to npm not being able to find a file.

Some links that may help you resolve the issue:

https://forums.expo.io/t/error-when-i-try-to-run-npm-install-in-my-project-folder/20873 https://stackoverflow.com/a/55564988