Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用以下方法在 Mountain Lion 上安装了 ruby 1.9.3:
rvm install 1.9.3
这一切都很好,我现在可以使用 ruby 1.9.3。但是,在 .rvm/src 目录中,我通常有一个名为 ruby-1.9.3p123 的文件夹,其中包含我的 ruby 安装源代码。这样的文件夹不再存在。我猜 rvm 使用一些预编译的二进制文件安装了 ruby,但是我怎样才能强制它从源代码编译或者至少让我得到源代码?
是的,RVM 会先尝试安装二进制文件,它会更快。
仅安装源尝试:
rvm fetch 1.9.3
从源安装红宝石:
rvm reinstall 1.9.3 --disable-binary