0
Hello, when trying to run ruby or Rails commands on the linux terminal Manjaro error occurs stating that the command is not recognized. I tried to perform the same procedure I used for Ubuntu, but it didn’t work. Someone has some hint ?
0
Hello, when trying to run ruby or Rails commands on the linux terminal Manjaro error occurs stating that the command is not recognized. I tried to perform the same procedure I used for Ubuntu, but it didn’t work. Someone has some hint ?
Browser other questions tagged ruby-on-rails ruby bash
You are not signed in. Login or sign up in order to post.
What is the return? And what is the command?
– Jefferson Quesado
command: Rails new app test -> command to create a project return: bash: Rails: command not found
– Wagner Rodrigues
Okay. Put this information in the question to make it easier for others to know this.
– Jefferson Quesado
Another question : how is your variable
$PATH
?– Jefferson Quesado
this is the result of echo $PATH usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
– Wagner Rodrigues
You put the
export PATH="$PATH:$HOME/.rvm/scripts/rvm"
inside your . bashrc? Because that path isn’t coming in that print you made...– JuniorNunes
I was able to solve my problem by following this tutorial http://lvasquez.github.io/2014/08/10/Install-Ruby-on-Rails-Manjaro/ Thank you very much for your attention.
– Wagner Rodrigues