使用 RVM 和 ruby​​ 1.8.6 在 Lion 上安装 rspec-1.3.2 时出现问题

发布于 2024-11-26 18:36:26 字数 350 浏览 4 评论 0原文

我正在尝试使用 RVM 和 Ruby 1.8.6 在 OS X Lion 上安装 rspec 版本 1.3.2

安装时,我得到以下信息:

$ gem install rspec -v=1.3.2
Abort trap: 6

我能够使用系统 ruby​​ 成功安装相同的 rspec 版本。我试图对这个问题进行一些研究,但看起来没有人遇到过同样的事情。类似的问题建议在安装 ruby​​ 之前export CC=gcc-4.2。我尝试过(在彻底清除 RVM 并重新安装最新版本 1.6.31 之后),但没有效果。

还有其他人遇到过这种情况吗?你找到解决办法了吗?

I'm trying to install rspec version 1.3.2 on OS X Lion using RVM and Ruby 1.8.6

When I install, I get the following:

$ gem install rspec -v=1.3.2
Abort trap: 6

I'm able to successfully install the same rspec version using the system ruby. I've tried to do some research into the problem, but it doesn't look like anybody has run into the same thing. Similar questions have suggested export CC=gcc-4.2 before installing ruby. I tried that (after completely blowing away RVM and reinstalling the latest version, 1.6.31 right now) but it had no effect.

Has anyone else else encountered this? Have you found a solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星光不落少年眉 2024-12-03 18:36:26

我全新安装了 1.8.6,没有 gem,并安装了详细标志...

gem install rspec -v=1.3.2 --verbose
GET http://rubygems.org/specs.4.8.gz
302 Moved Temporarily
GET http://production.s3.rubygems.org/specs.4.8.gz
200 OK
Installing gem rspec-1.3.2
Abort trap: 6

我看到 Abort Trap 6 的问题似乎表明缺少某些依赖项。我希望这个问题可以通过原始命令得到解决,但最终决定只降低一个版本。

rvm gemset pristine
gem install rspec -v=1.3.1 --verbose
...
Successfully installed rspec-1.3.1
...
gem list

*** LOCAL GEMS ***

rake (0.9.2)
rspec (1.3.1)

为什么必须使用 1.3.2 而不是 1.3.1?希望这有帮助。

I installed 1.8.6 fresh with no gems and installed with verbose flag...

gem install rspec -v=1.3.2 --verbose
GET http://rubygems.org/specs.4.8.gz
302 Moved Temporarily
GET http://production.s3.rubygems.org/specs.4.8.gz
200 OK
Installing gem rspec-1.3.2
Abort trap: 6

I see the problem of Abort Trap 6 seems to indicate that some dependency is missing. I was hoping that this would get resolved with the pristine command, but settled on just going down a version.

rvm gemset pristine
gem install rspec -v=1.3.1 --verbose
...
Successfully installed rspec-1.3.1
...
gem list

*** LOCAL GEMS ***

rake (0.9.2)
rspec (1.3.1)

Why must you use 1.3.2 instead of 1.3.1? Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文