3

我已经阅读了几乎所有关于 Rails 错误的帖子,以寻找我的问题的解决方案,虽然我已经解决了一些问题,但我想出了更多。我升级到 Snow Leopard 并根据《Agile Development with Rails》一书安装了 RVM 和 Rails。但是,一旦我创建了我的应用程序文件夹并执行 RAKE,我就会收到此错误,我就是不知道如何修复它。我已经尝试过多次重新安装所有内容,但均无济于事。这是架构问题吗?还是我需要找到一个库并加载它?我怎么做?

rake aborted!
dlopen(/opt/local/lib/ruby/1.8/i686-darwin9/digest/sha1.bundle, 9): Library not loaded: /opt/local/lib/libcrypto.1.0.0.dylib
Referenced from: /opt/local/lib/ruby/1.8/i686-darwin9/digest/sha1.bundle
Reason: no suitable image found.  Did find:
/opt/local/lib/libcrypto.1.0.0.dylib: mach-o, but wrong architecture - /opt/local/lib/ruby/1.8/i686-darwin9/digest/sha1.bundle

(See full trace by running task with --trace)
4

2 回答 2

6

您的系统可能发生了变化。您可能已经移动或删除了一些 ruby​​ 需要的文件或文件夹。

rvm reinstall ree

或者spyle的回答基本正确,但是ewww macports。去吧自制!

于 2012-06-27T17:31:57.333 回答
1

我在 ruby​​ 1.8.7/passenger/apache 堆栈上遇到了这个问题。重新安装 ruby​​(通过 macports)并针对 openssl 库重建它为我解决了这个问题。

于 2012-01-28T21:27:57.913 回答