Bitcoin Forum

Bitcoin => Project Development => Topic started by: mason13 on June 13, 2018, 11:53:30 PM



Title: Installing bitcore and have an issue [Ubuntu]
Post by: mason13 on June 13, 2018, 11:53:30 PM
Hi,

Trying to install bitcore with npm but getting this error:

Code:
npm install -g bitcore
|
> bitcore-node@3.1.3 preinstall /root/.nvm/versions/node/v4.9.1/lib/node_modules/bitcore/node_modules/bitcore-node
> ./scripts/download

./scripts/download: line 30: cd: /root/.nvm/versions/node/v4.9.1/lib/node_modules/bitcore/node_modules/bitcore-node/scripts/../bin: Permissiondenied
npm ERR! Linux 3.13.0-149-generic
npm ERR! argv "/root/.nvm/versions/node/v4.9.1/bin/node" "/root/.nvm/versions/node/v4.9.1/bin/npm" "install" "-g" "bitcore"
npm ERR! node v4.9.1
npm ERR! npm  v2.15.11
npm ERR! code ELIFECYCLE

npm ERR! bitcore-node@3.1.3 preinstall: `./scripts/download`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the bitcore-node@3.1.3 preinstall script './scripts/download'.
npm ERR! This is most likely a problem with the bitcore-node package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     ./scripts/download
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs bitcore-node
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!
npm ERR!     npm owner ls bitcore-node
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /npm-debug.log

What should I do?

Thanks a lot!


Title: Re: Installing bitcore and have an issue [Ubuntu]
Post by: hugeblack on June 14, 2018, 02:50:55 AM
Try to execute/run the code "npm install -g bitcore" by adding sudo"root privileges" because it will solve most of the permissions problems.
You can check this link for more information ------> https://docs.npmjs.com/misc/scripts#user
If npm was invoked with root privileges, then it will change the uid to the user account or uid specified by the user config, which defaults to nobody. Set the unsafe-perm flag to run scripts with root privileges.

If this doesn't work with you, try this "npm install -g --unsafe-perm=true bitcore" source ----> https://github.com/bitpay/bitcore/issues/1458 (https://github.com/bitpay/bitcore/issues/1458)