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.
我正在尝试通过安装捆绑程序gem install bundler,一切正常,但是当我这样做时bundle install:
gem install bundler
bundle install
错误:未安装 Gem 捆绑器,gem install bundler请先运行。
我在 Mountain Lion 上使用 ruby 1.9.3p385。
我尝试按照 Stack Overflow 上的提示重新安装很多次,但没有运气。
你能帮我吗?
谢谢
确保您的 PATH 变量中有捆绑程序,检查与echo $PATH
echo $PATH
如果包含捆绑器的目录不存在,请添加它PATH=$PATH:/path/to/bundler
PATH=$PATH:/path/to/bundler