If you just want that particular warning to disappear just add the following line to your .bashrc or .bash_profile.
export PATH="$PATH:$HOME/.rvm/gems/ruby-2.1.5/bin"
Now just source the bashrc/bash_profile and the message will not appear again.
Я пытаюсь запустить подтему Omega на моем локальном компьютере (OSX 10.10) с Acquia Desktop Dev. Попытка запустить изолированный ruby в каталоге подтем. Когда я использую, rvm list
я получаю:
Warning! PATH is not properly set up, '/Users/khrysztov/.rvm/gems/ruby-2.1.5/bin' is not at first place, usually this is caused by shell initialization files - check them for 'PATH=...' entries, it might also help to re-add RVM to your dotfiles: 'rvm get stable --auto-dotfiles', to fix temporarily in this shell session run: 'rvm use ruby-2.1.5'. rvm rubies =* ruby-2.1.5 [ x86_64 ] # => - current # =* - current && default # * - default
Я не уверен в состоянии моего .bash_profile. Это выглядит так:
PATH=“/Users/khrysztov/.rvm/gems/ruby-2.1.5/bin:/Applications/Dev\ Desktop/drush:/Applications/MAMP/Library/bin:/Applications/MAMP/bin/php5.5.18/bin:/Applications/MobileDeveloper/adt-bundle-mac-x86_64-20130729/sdk/platform-tools:/Applications/MobileDeveloper/adt-bundle-mac-x86_64-20130729/sdk/tools:/usr/local/bin:” export PATH export "DRUSH_PHP=/Applications/Dev Desktop/php5_5/bin/php" export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " export CLICOLOR=1 export LSCOLORS=ExFxBxDxCxegedabagacad alias ls='ls -GFh' source ~/.profile [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
Окно Bash запускается так:
-bash: /Users/khrysztov/.rvm/rubies/ruby-2.1.5/lib/ruby/gems/2.1.0: is a directory khrysztov@khrysztovs-iMac:~$ /var/folders/bx/936smxc92dg_3pnf0zswj_f40000gn/T/DevDesktopConsole
Когда я смотрю в Finder на /Users/khrysztov/.rvm/gems/ruby-2.1.5/bin, появляется псевдоним (называемый 'ruby-2.1.5@global', который ссылается на /Users/khrysztov/.rvm/rubies /ruby-2.1.5/lib/ruby/gems/2.1.0 и там есть несколько драгоценных камней. У меня уже был RVM, работавший ранее, но когда я настраивал drush, он перестал работать, и я переустановил его, и я беспокоюсь могут быть конфликтующие файлы или записи PATH?
If you just want that particular warning to disappear just add the following line to your .bashrc or .bash_profile.
export PATH="$PATH:$HOME/.rvm/gems/ruby-2.1.5/bin"
Now just source the bashrc/bash_profile and the message will not appear again.