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.
在 RVM 中,每次我重新启动它都会说找不到 gem,因为它们都安装在我的“全局”gemset 中。
我怎样才能将其设置为默认值,这样我就不需要每次都切换到该 gemset?
我实际上浏览了一段时间的文档并没有看到任何东西,但是我通过搜索一堆不同的东西从堆栈溢出中发现了这一点。
首先运行rvm list看看你的红宝石
rvm list
然后跑去rvm gemset list看你的宝石
rvm gemset list
最后,运行rvm use <desired-ruby-version>@<gemset> --default
rvm use <desired-ruby-version>@<gemset> --default
例如:
rvm use ruby-1.9.3-head@global --default