3

我不明白这是怎么发生的:

$ bundle install
[...]
$ bundle exec rails server
[...] You have already activated rack 1.4.4, but your Gemfile requires rack 1.4.3. Using bundle exec may solve this. (Gem::LoadError)

我不明白怎么可能出现这个错误;Bundler 不能防止这种情况发生吗?

$ gem list rack

*** LOCAL GEMS ***

rack (1.4.4, 1.4.3, 1.4.1)

在 Gemfile 中,我们需要明确列出 UUID 库的 rack,我相信:

gem "rack"
4

1 回答 1

3

我可以通过简单地卸载我不想要的机架版本来解决这个问题。

gem uninstall rack

Select gem to uninstall:
1. rack-1.4.1
2. rack-1.4.3
3. rack-1.4.4
4. All versions
> 3
Successfully uninstalled rack-1.4.4
于 2013-02-04T19:40:12.537 回答