如何在Mac OS X上安装pyOpenSSL?

时间:2013-01-16 15:12:45

标签: pyopenssl

我正在使用Titanium 3.0并尝试更新pyOpenSSL。我检查了python网站,只看到Windows的可下载链接。在Tianium论坛中,他们说“如果您使用MacPorts或Homebrew安装Python,请使用相同的实用程序来安装PyOpenSSL和PyCrypto。”我尝试使用自制软件并做“brew install pyopenssl”并收到错误消息“没有可用的pyopenssl公式”。有什么建议吗?

2 个答案:

答案 0 :(得分:6)

尝试使用easy_install

easy_install PyOpenSSL

easy_install PyCrypto

答案 1 :(得分:0)

通过Homebrew安装:

brew install openssl env ARCHFLAGS="-arch x86_64" LDFLAGS="-L/usr/local/opt/openssl/lib" CFLAGS="-I/usr/local/opt/openssl/include" pip install cryptography

此答案来自https://chriskief.com/2014/03/25/installing-cryptography-via-pip-with-macports-or-homebrew/comment-page-1/#comment-2809