binance-cli
binance-cli copied to clipboard
Dependency to `commander` must be installed manually
I tried to install from git on my arch linux machine.
I got this error :
❯ binance-cli
node:internal/modules/cjs/loader:1152
throw err;
^
Error: Cannot find module 'commander'
I fixed it by running npm install commander -g
It would probably be a good idea to either include this dependency in the package, or at least specify this requirement in README.md
Just came across this as well.
Had to npm uninstall binance-cli first, then npm install -g commander, npm install -g inside this repo.