olalonde / proof-of-liabilities

Proof of Liabilities (PoL) is a scheme designed to let companies that accept monetary deposits from consumers (e.g. Bitcoin exchanges, gambling websites, online Bitcoin wallets, etc.) prove their total amount of deposits (their liabilities) without compromising the privacy of individual users.
http://olalonde.github.io/proof-of-liabilities
MIT License
106 stars 37 forks source link

npm install blproof from github fails: git@github.com:olalonde/blind-liability-proof is not a valid repository name #7

Closed FredericHeem closed 10 years ago

FredericHeem commented 10 years ago

Dear, After adding "blproof":"git@github.com:olalonde/blind-liability-proof.git#4be66583aff5763ae89316530fbe5797ddffc79c" in a package.json and run "sudo npm install blproof" The output is: npm http GET https://registry.npmjs.org/blproof npm http GET https://registry.npmjs.org/blproof npm http GET https://registry.npmjs.org/blproof npm ERR! git clone git://github.com/git@github.com:olalonde/blind-liability-proof.git Cloning into bare repository '/Users/frederic/.npm/_git-remotes/git-github-com-git-github-com-olalonde-blind-liability-proof-git-5bd27c5e'... npm ERR! git clone git://github.com/git@github.com:olalonde/blind-liability-proof.git npm ERR! git clone git://github.com/git@github.com:olalonde/blind-liability-proof.git fatal: remote error: npm ERR! git clone git://github.com/git@github.com:olalonde/blind-liability-proof.git git@github.com:olalonde/blind-liability-proof is not a valid repository name npm ERR! git clone git://github.com/git@github.com:olalonde/blind-liability-proof.git Email support@github.com for help npm ERR! Error: No compatible version found: blproof@'git@github.com:olalonde/blind-liability-proof.git#4be66583aff5763ae89316530fbe5797ddffc79c' npm ERR! Valid install targets: npm ERR! ["0.0.1","0.0.2","0.0.3"] npm ERR! at installTargetsError (/usr/local/lib/node_modules/npm/lib/cache.js:685:10) npm ERR! at /usr/local/lib/node_modules/npm/lib/cache.js:607:10 npm ERR! at saved (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/get.js:138:7) npm ERR! at Object.oncomplete (fs.js:107:15) npm ERR! If you need help, you may report this log at: npm ERR! http://github.com/isaacs/npm/issues npm ERR! or email it to: npm ERR! npm-@googlegroups.com

Any ideas ? Best Regards

orweinberger commented 10 years ago

Change:

"blproof":"git@github.com:olalonde/blind-liability-proof.git#4be66583aff5763ae89316530fbe5797ddffc79c"

To:

"blproof": "https://github.com/olalonde/blind-liability-proof/tarball/master",

And you don't have to use sudo

FredericHeem commented 10 years ago

wow, such response, much progress It now works, many thanks.