ZSH: command not found: rails

rails is installed ... running gem list rails returns rails (3.2.1) .. however, when I run the rails command such as rails new testapp -T I get Command Not Found: rails

I am using RVM which is set to `~ / .rvm /.

In / bin / bash shell, the command works fine, but in / bin / zsh it is not.

My .zshrc file:

 # Path to your oh-my-zsh configuration. ZSH=$HOME/.oh-my-zsh # Set name of the theme to load. # Look in ~/.oh-my-zsh/themes/ # Optionally, if you set this to "random", it'll load a random theme each # time that oh-my-zsh is loaded. ZSH_THEME="doubleend" # Example aliases # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" # Set to this to use case-sensitive completion # CASE_SENSITIVE="true" # Comment this out to disable weekly auto-update checks # DISABLE_AUTO_UPDATE="true" # Uncomment following line if you want to disable colors in ls # DISABLE_LS_COLORS="true" # Uncomment following line if you want to disable autosetting terminal title. # DISABLE_AUTO_TITLE="true" # Uncomment following line if you want red dots to be displayed while waiting for completion # COMPLETION_WAITING_DOTS="true" # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) plugins=(git rails textmate ruby) source $ZSH/oh-my-zsh.sh [[ -s "/volumes/MacintoshHD/users/mikedevita/.rvm/scripts/rvm" ]] && source "/volumes/MacintoshHD/users/mikedevita/.rvm/scripts/rvm" # Customize to your needs... PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin:/usr/local/git/bin/:/tools 
+4
source share
4 answers

I think the problem is as simple as providing a script source for rvm:

 [[ -s "/volumes/MacintoshHD/users/mikedevita/.rvm/scripts/rvm" ]] && source "/volumes/MacintoshHD/users/mikedevita/.rvm/scripts/rvm" 

- the last line in your zshrc file should do the trick, just move the definition of your path above that line, enter .zshrc, and you should be good to go.

+7
source

you should add this to ~ / .zshrc

 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" 
+8
source

your $PATH probably doesn't include where the rails are installed. Check its value in bash and adjust accordingly. You can also add :$PATH to the end of an existing PATH assignment and get it that way.

0
source

You can run on Zsh bin/zsh --login

0
source

Source: https://habr.com/ru/post/1398875/


All Articles