Ruby 捆绑安装问题,/usr/bin/ld:找不到 -lssl,/usr/bin/ld:找不到 -lcrypto Dradis 框架
Problem with Ruby Bundle Install, /usr/bin/ld: cannot find -lssl, /usr/bin/ld: cannot find -lcrypto Dradis Framework
我正在使用 Elementary OS 并尝试安装 Dradis Framework。
我遵循了所有步骤并添加了一些其他的(例如我安装了 Ruby 2.5.1p57),当我 运行 ./setup
在 dradis-ce/bin
中时。一切看起来都正常,直到出现错误消息:
An error occurred while installing mysql2 (0.5.2), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.5.2' --source 'https://rubygems.org/'` succeeds before bundling.
所以我 运行 gem install mysql12 -v '0.5.2'
消息控制台是
can't find -ssl- lss-
我已经安装了 build-essential
但它没有用。我已经安装了 MySQL Ver 14.14 Distrib 5.7.28,但没有任何反应。
-lssl
和 -lcrypto
选项由 libssl-dev 软件包在 Ubuntu/Debian 和 Ubuntu 类系统上提供。
安装 libssl-dev 软件包后,您应该能够安装 MySQL2 gem.
我正在使用 Elementary OS 并尝试安装 Dradis Framework。
我遵循了所有步骤并添加了一些其他的(例如我安装了 Ruby 2.5.1p57),当我 运行 ./setup
在 dradis-ce/bin
中时。一切看起来都正常,直到出现错误消息:
An error occurred while installing mysql2 (0.5.2), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.5.2' --source 'https://rubygems.org/'` succeeds before bundling.
所以我 运行 gem install mysql12 -v '0.5.2'
消息控制台是
can't find -ssl- lss-
我已经安装了 build-essential
但它没有用。我已经安装了 MySQL Ver 14.14 Distrib 5.7.28,但没有任何反应。
-lssl
和 -lcrypto
选项由 libssl-dev 软件包在 Ubuntu/Debian 和 Ubuntu 类系统上提供。
安装 libssl-dev 软件包后,您应该能够安装 MySQL2 gem.