在macOS 上使用Homebrew 更新Python 2.7 中的OpenSSL
Python 利用OpenSSL 庫進行安全通訊庫進行安全通訊系統的預設設定OpenSSL 版本。要在macOS 上更新Python 2.7 中的OpenSSL,請按照以下步驟操作:
使用Homebrew 安裝最新的OpenSSL:
brew update brew install openssl
brew link openssl --force
brew install python --with-brewed-openssl
將OpenSSL 連結到Homebrew:
sudo ln -s /usr/local/Cellar/python/2.7.8_2/bin/python /usr/local/bin/python
使用Homebrew>
python -c "import ssl; print ssl.OPENSSL_VERSION"
建立指向新Python 二進位檔案的符號連結:
openssl version
以上是如何使用 Homebrew 在 macOS 上的 Python 2.7 中更新 OpenSSL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!