Я следовал руководству по установке Ruby on Rails на Mac с этого сайта:
http://ruby.railstutorial.org/
Я установил rvm, и он не работал. Учебник сказал, чтобы ввести эту команду:
~ $ [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
После того, как я это сделал, казалось, что он успешно загрузился, как сказано это:
~ DUFF$ rvm reload
RVM reloaded!
~ DUFF$ rvm notes
Notes for Darwin ( Mac OS X )
For Lion, Rubies should be built using gcc rather than llvm-gcc. Since
/usr/bin/gcc is now linked to /usr/bin/llvm-gcc-4.2, add the following to
your shell's start-up file: export CC=gcc-4.2
(The situation with LLVM and Ruby may improve. This is as of 07-23-2011.)
For Snow Leopard be sure to have Xcode Tools Version 3.2.1 (1613) or later
You should download the latest Xcode tools from developer.apple.com.
(This is since the dvd install for Snow Leopard contained bugs).
If you intend on installing MacRuby you must install LLVM first.
If you intend on installing JRuby you must install the JDK.
If you intend on installing IronRuby you must install Mono (version 2.6 or greater is recommended).
To seamlessly abandon the Apple-installed system ruby (ruby 1.8.7 patchlevel 174 for Snow Leopard):
rvm install 1.8.7 # installs patch 302: closest supported version
rvm system ; rvm gemset export system.gems ; rvm 1.8.7 ; rvm gemset import system # migrate your gems
rvm --default 1.8.7
NOTE: For all installations, as of 1.7, RVM no longer autoloads .rvmrc files. In order to return this functionality, you MUST add 'export rvm_project_rvmrc=1' to your $HOME/.rvmrc file. This causes RVM to override 'cd' which, while toggleable even < 1.7, is currently defaulted to 'off'. This knob returns the previous behaviour to active which causes per-project .rvmrc files to be loaded once again.
Пример: echo 'export rvm_project_rvmrc = 1' >> $ HOME / .rvmrc && rvm reload
Итак, после всего этого я ввел это как указано:
type rvm | head -n1
и сказано:
-bash: type: rvm: not found
Итак, после этого долгого вступления мой вопрос будет таким: знаете ли вы, почему он не распознает тип rvm после его установки. Я полный новичок, поэтому, пожалуйста, будьте нежны. У меня было множество проблем, и до этого момента это, казалось, хорошо продвигалось.
Любая помощь будет принята с благодарностью. Спасибо.