foreman: command not found

I am following this tutorial of Heroku. I installed foreman with

sudo gem install foreman

but when I try to use this in the terminal with command

foreman

this 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 foreman

And re-install it back with rvm.

rvm gem install foreman

Good luck!

2

I 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.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like