1

コンピューターをフォーマットし、すべてのRoRアプリケーションを新しいLubuntuシステムに転送しました。UnityでUbuntuを使用しました。(まだLinuxシステムです)。私はrvm、ruby、railsをインストールしましたが、それらはすべて正常に動作します!次に、「rails」を実際に実行してアプリをテストする前に、「bundleinstall」を実行します。これは私が得るものです

Unfortunately, a fatal error has occurred. Please report this error to the Bundler issue tracker at https://github.com/carlhuda/bundler/issues so that we can fix it. Please include the full output of the command, your Gemfile and Gemfile.lock. Thanks!
/home/user/.rvm/rubies/ruby-1.9.2-p318/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require': no such file to load -- openssl (LoadError)

何か助けはありますか?

これはsudoapt-getinstallopensslが私に与えるものです:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
openssl is already the newest version.
The following packages were automatically installed and are no longer required:
  libreadline-gplv2-dev git-man libncurses5-dev libnspr4-0d libtinfo-dev git libreadline5 zlib1g-dev liberror-perl libsqlite3-dev
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
4

1 に答える 1

3

RVMでrubyバージョンをインストールする前にパッケージをインストールしましたか?

ルビーバージョンを削除して、実行してみてください

sudo apt-get install libssl-dev openssl

その後、rubyバージョンを再度インストールします

于 2012-04-19T18:22:15.703 に答える