npm install error (fatal: bad object f18e4d058698a689943db9cb41f767efbc2c85ed) -
recently downloaded code github , tried install it.
however, found errors during process ass followed:
terrylai@terrys-macbook-pro:~/copay$ npm install npm err! git rev-list -n1 f18e4d058698a689943db9cb41f767efbc2c85ed: fatal: bad object f18e4d058698a689943db9cb41f767efbc2c85ed npm err! git rev-list -n1 f18e4d058698a689943db9cb41f767efbc2c85ed: npm err! darwin 15.5.0 npm err! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" npm err! node v6.4.0 npm err! npm v3.10.3 npm err! code 128
the following part of package.json. tell me how solve it?
"dependencies": { "bitcore-wallet-client": "git://github.com/digibyte/bitcore-wallet-client.git#32b2f6434d1d4a77d4878d7dee9cf374086c3966", "express": "^4.11.2", "fs": "0.0.2", "grunt": "^0.4.5", "grunt-angular-gettext": "^0.2.15", "grunt-browserify": "^4.0.1", "grunt-cli": "^0.1.13", "grunt-contrib-compress": "^0.13.0", "grunt-contrib-concat": "^0.5.1", "grunt-contrib-copy": "^0.8.1", "grunt-contrib-uglify": "^0.9.2", "grunt-contrib-watch": "^0.6.1", "grunt-exec": "^0.4.6", "shelljs": "^0.3.0" },
br,
terry
the issue looks git link wrong or pointing doesn't exist. if replace version of bitcore-wallet-client need should fix problem.
for instance, tried npm install in package.json file:
{ "name": "best bitcoin service", "version": "1.0.0", "description": "please no npm errs", "dependencies": { "bitcore-wallet-client": "1.3.0", "express": "^4.11.2", "fs": "0.0.2", "grunt": "^0.4.5", "grunt-angular-gettext": "^0.2.15", "grunt-browserify": "^4.0.1", "grunt-cli": "^0.1.13", "grunt-contrib-compress": "^0.13.0", "grunt-contrib-concat": "^0.5.1", "grunt-contrib-copy": "^0.8.1", "grunt-contrib-uglify": "^0.9.2", "grunt-contrib-watch": "^0.6.1", "grunt-exec": "^0.4.6", "shelljs": "^0.3.0" }, }
and install succeeded warnings:
npm install npm warn deprecated minimatch@0.2.14: please update minimatch 3.0.2 or higher avoid regexp dos issue npm warn deprecated minimatch@0.3.0: please update minimatch 3.0.2 or higher avoid regexp dos issue npm warn deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 , before fail on node releases >= v7.0. please update graceful-fs@^4.0.0 possible. use 'npm ls graceful-fs' find in tree. npm warn deprecated cssselect@0.4.1: module available 'css-select' npm warn deprecated csswhat@0.4.7: module available 'css-what' npm warn deprecated minimatch@2.0.10: please update minimatch 3.0.2 or higher avoid regexp dos issue npm warn deprecated lodash@1.0.2: lodash@<3.0.0 no longer maintained. upgrade lodash@^4.0.0. > fsevents@1.0.14 install /users/phillipsc/code/temp/stackoverflow/node_modules/fsevents > node-pre-gyp install --fallback-to-build [fsevents] success: "/users/phillipsc/code/temp/stackoverflow/node_modules/fsevents/lib/binding/release/node-v48-darwin-x64/fse.node" installed via remote brocoin@1.0.0 /users/phillipsc/code/temp/stackoverflow ├─┬ bitcore-wallet-client@1.3.0 │ ├── async@0.9.2 │ ├─┬ bip38@1.4.0 │ │ ├── bigi@1.4.2
with said, it's hard tell need without knowing repo posted subsection of package.json from.
Comments
Post a Comment