I am following this tutorial of Heroku. I installed foreman with
sudo gem install foremanbut when I try to use this in the terminal with command
foremanthis returns
foreman: command not found
4 Answers
Just got the same error: foreman command not found.
I managed to succeed removing my gem with:
sudo gem uninstall foremanAnd re-install it back with rvm.
rvm gem install foremanGood luck!
2I would check where gem installs executables into and add that directory to your PATH.
gem install foreman was all I needed to do
However, when I followed the deb instructions on this page: I had lots of issues...Eventually, I completely uninstalled before running gem install foreman. Then it worked like a charm.
You haven't given quite enough information for the problem to be properly diagnosed. (Eg, give a link to the tutorial, indicate if you tested foreman by itself, and tell us what "this" is, ie what command you entered or selected.)
If the install appeared to be ok, and if which foreman reports a reasonable path to foreman, and if the invocation that failed is in a non-interactive shell, then the usual problem is a different $PATH value in that shell, and the usual solution is to specify a fully-qualified path.