首頁 >後端開發 >Python教學 >如何在不使用 Virtualenv 的情況下將 Python 套件安裝到自訂目錄?

如何在不使用 Virtualenv 的情況下將 Python 套件安裝到自訂目錄?

Barbara Streisand
Barbara Streisand原創
2024-12-04 01:48:10193瀏覽

How to Install Python Packages to a Custom Directory Without Using Virtualenv?

如何在沒有Virtualenv 的情況下將Python 套件安裝到自訂目錄

當需要在預設網站套件以外的目錄中安裝Python 套件時,使用者通常求助於virtualenv 和virtualenvwrapper。但是,對於某些用例,該方法可能不可行或不首選。

Pip 的 --target 開關

要修改 Pip 中的安裝目錄,請使用 - - 目標開關。例如:

pip install --target d:\somewhere\other\than\the\default package_name

此指令將在指定的 d:somewhereotherthanthedefault 目錄中安裝 package_name。

將目錄新增至PYTHONPATH

請注意,雖然該軟體包安裝在自訂目錄中,您需要將路徑新增至PYTHONPATH 以啟用存取從該位置安裝的模組。

升級 Pip 以獲得 --target 可用性

根據您的 Pip 版本,您可能找不到可用的 --target 開關。要解決這個問題,請升級Pip:

  • Linux 或OS X:
pip install -U pip
  • Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(解決🎜>Windows(方法):
python -m pip install -U pip

以上是如何在不使用 Virtualenv 的情況下將 Python 套件安裝到自訂目錄?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn