I installed truffle through npm
with the following:
sudo npm install -g truffle
but when I run truffle list on the console it just gives me
bash: truffle: command not found
I had a similar problem. I ran npm i -g truffle
and then when I tried to run truffle init
I got an error: zsh: command not found: truffle
. What solved it for me is to create a local node_modules with truffle installed in it, and then run that copy.
npm init
and make a new npm projectnpm i truffle
./node_modules/.bin/truffle init
and it should work!