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