简体   繁体   中英

bash: "command not found" after installing a package in nodenv e.g. mocha, pm2

As example I will use pm2. I can't run the command pm2 on my nodenv nodejs installation. It will return:

$ pm2 -v
$ bash: pm2: command not found

further:

$ which pm2

does not return anything. What am I missing?

I installed it as the documentation suggested:

$ yarn global add pm2

Ok there are several pitfalls here:

  1. It looks like nodenv does not support yarn global package installations: Github issue from 2018, looks like it has not been implemented
  2. If you install a package with npm -g option you HAVE TO do nodenv rehash in order for the command to work in bash.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM