我的專用伺服器有 CentOS 5.5。我嘗試安裝 Plone,所以我基本上是這樣做的:
wget launchpad.net/plone/4.0/4.0.2/+download/Plone-4.0.2-UnifiedInstaller.tgz
tar xzf Plone-4.0.2-UnifiedInstaller.tgz
cd Plone-4.0.2-UnifiedInstaller
./install.sh zeo
我遇到了以下錯誤:
Unable to find libssl or openssl/ssl.h.
If you wish to build without SSL support, run install.sh again with
--without-ssl flag.
Otherwise, install your platform's openssl-dev libraries and headers
and try again.
出現此錯誤後,我成功安裝了 openssl:
yum install openssl
我嘗試再次安裝 Plone。但我不斷收到錯誤:「無法找到 libssl 或 openssl/ssl.h」。有人知道我錯過了什麼嗎?
答案1
的開發文件<package>
通常位於<package>-devel
.安裝openssl-devel
。
答案2
好吧,我發現了我的錯誤。我不僅必須下載 openssl,還必須下載 openssl-devel,如下所示:
yum install openssl-devel