I am currently working on a project that requires the rackup command on ubuntu 11.04, but I am getting an error: -bash: rackup: command not found
. I have installed both the rails and rack ruby gems.
Any help with this would be awesome!
I am currently working on a project that requires the rackup command on ubuntu 11.04, but I am getting an error: -bash: rackup: command not found
. I have installed both the rails and rack ruby gems.
Any help with this would be awesome!
Looks like rackup was really rackup1.8. Problem was solved right after that! Anybody who runs into a similar issue, be sure to try rackup[version] along with just rackup.
if you're using bundler then perhaps you need to use bundle exec
bundle exec rackup
-bash: bundle: command not found
–
Hegarty Looks like rackup was really rackup1.8. Problem was solved right after that! Anybody who runs into a similar issue, be sure to try rackup[version] along with just rackup.
© 2022 - 2024 — McMap. All rights reserved.
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
– Hegartyrails
command work? – Goodohrails
does work. – Hegartywhich rails
should tell you where gems' binaries are located,rackup
should be in the same location. if it's not maybe try reinstallingrack
gem – Goodoh