2

当我尝试bundle install在我的 Gemfile 中使用它运行时

gem 'activeadmin', github: 'gregbell/active_admin'

我得到:

获取 git://github.com/gregbell/active_admin.git 由于错误重试源获取 (2/3):您需要安装 git 才能使用来自 git 存储库的 gem。有关安装 git 的帮助,请参阅https://help.github.com/articles/set-up-git上的 GitHub 教程

但是我已经安装了 git,而且我可以运行 git commit、git pull 和其他命令。

我在 Windows 8 上,使用 RoR 4

4

1 回答 1

0

访问 github 有两种方式,通过 git:// 和 http:// 可以尝试通过 http://

我的 Gemfile 中有这一行,您可以根据需要对其进行调整:

gem 'activeadmin-mongoid', :git => 'https://github.com/piousbox/activeadmin-mongoid.git', :branch => 'fix_sidebar_disable'

所以对你来说也许

gem 'activeadmin', :git => 'https://github.com/gregbell/active_admin.git'

另外,我假设您确实安装了 git?因为错误说,安装 git ;)

sudo apt-get install git如果你在 ubuntu 上,或者

brew install git如果您使用的是 Mac OS X。

于 2013-11-06T17:39:29.223 回答