bcoin-org / bcoin

Javascript bitcoin library for node.js and browsers
https://bcoin.io
Other
2.98k stars 811 forks source link

Cannot install bcoin, Possible bcrypto error #1142

Open Kaushik-Iyer opened 1 year ago

Kaushik-Iyer commented 1 year ago

image This is the error I get when i try to run 'npm rebuild' to get started with bcoin Operating System: Ubuntu 22.04

r0ushann commented 1 year ago

it may be cause of incomplete cloning of the repo.. you may try by making a completely new folder and then starting from the initial cloning command

r0ushann commented 1 year ago

installing via git

$ mkdir Bcoin && cd Bcoin $ git clone https://github.com/bcoin-org/bcoin $ cd bcoin

verify signature $ git log --show-signature <press q to exit signature log>

build and install globally with npm $ git log --show-signature <press q to exit signature log>

gks2022004 commented 1 year ago

@Kaushik-Iyer @r0ushann To build and install globally with npm you need to run: $ npm rebuild $ npm install --global

Then to run the test locally: from inside the bcoin repo directory, run $ npm run test

or you can run a single test also $ npm run test-file test/address-test.js