使用多個Python 版本時,有必要顯式指定目標安裝目錄。傳統上,使用者依靠 easy_install-2.{5,6} 等工具來處理此問題,但 PIP 提供了更通用的解決方案。
目前的最佳實踐是使用 -m 標誌,後跟所需的 Python 版本。此方法在所有 Python 版本和虛擬環境中都是一致的。以下是一些示例:
# Installing to the default Python: $ python -m pip install fish # Installing to a virtualenv's Python: $ .env/bin/python -m pip install fish # Installing to a specific Python version: $ python-3.6 -m pip install fish
$ pip-2.5 install myfoopackage $ pip-2.6 install otherpackage $ pip-2.7 install mybarpackage
以上是如何使用PIP管理多個Python版本並安裝套件到特定版本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!