我正在尝试在Linux Mint Olivia上安装名为YARP的软件 - Python绑定,这需要安装OpenSSL,我按照这些说明安装OpenSSL 1.0.1g: http://wiki.openssl.org/index.php/Compilation_and_Installation
YARP配置失败:
configure: error: in `/home/osama/robotpkg/pkgtools/tnftp/work.osama-Inspiron-N5010/tnftp-20130505':
| configure: error: --with-ssl was given, but OpenSSL wasn't found
| See `config.log' for more details
当我输入openssl version
命令时,我得到以下结果:
OpenSSL 1.0.1g 7 Apr 2014 (Library: OpenSSL 1.0.1c 10 May 2012)
我注意到OpenSSL 1.0.1g
是我安装的,而Library: OpenSSL 1.0.1c 10 May 2012
是预装Linux的,这可能是问题吗?
有什么建议吗?
答案 0 :(得分:0)
使用--with-openssl安装CoovaChilli时遇到了同样的问题。虽然我不知道为什么OpenSSL已经安装好了。但是一个
yum install openssl openssl-devel
似乎修复了它,我能够 ./ configure 而没有任何错误。