Pythons Bibliotheken von Drittanbietern werden im Benutzerverzeichnis (~/.local/lib/python3.x/site-packages) und im Systemverzeichnis (/usr/local/lib/python3.x/site-packages) installiert. Zu den Installationsmethoden für Bibliotheken von Drittanbietern gehören: Verwenden von pip (in Python integriertes Paketverwaltungstool) und Conda (Paketverwaltungstool für die Anaconda-Distribution) zur Installation aus dem Quellcode
Wo kann die Bibliothek eines Drittanbieters installiert werden?
Pythons Bibliotheken von Drittanbietern werden hauptsächlich in den folgenden zwei Verzeichnissen installiert:
~/.local/lib/python3.x/site-packages
~/.local/lib/python3.x/site-packages
/usr/local/lib/python3.x/site-packages
如何安装第三方库?
有以下几种方法可以安装第三方库:
1. 使用 pip
pip 是 Python 内置的包管理工具。要使用 pip 安装第三方库,请按照以下步骤操作:
<code># 确保已安装 pip python -m ensurepip # 使用 pip 安装第三方库 pip install <包名></code>
2. 使用 conda
conda 是 Anaconda 发行版随附的包和环境管理工具。要使用 conda 安装第三方库,请按照以下步骤操作:
<code># 创建或选择一个 conda 环境 conda create -n <环境名> python=3.x # 使用 conda 安装第三方库 conda install -c <频道名> <包名></code>
3. 从源代码安装
某些第三方库可以通过从源代码安装。要从源代码安装第三方库,请按照以下步骤操作:
<code>python setup.py install</code>
选择安装目录
默认情况下,第三方库会安装在用户目录中。如果你希望将库安装在系统目录中,可以使用 --target
System Verzeichnis: /usr/local/lib/python3.x/site-packages
<code>pip install --target=/usr/local/lib/python3.x/site-packages <包名></code>
--target
verwenden: 🎜rrreee🎜🎜Repositorys und Kanäle🎜🎜🎜🎜pip Bei der Installation einer Bibliothek können Sie ein Repository angeben , wie PyPI (https://pypi.org). 🎜🎜Bei der Installation der Conda-Bibliothek können Sie den Kanal angeben, z. B. Conda-Forge. 🎜🎜Das obige ist der detaillierte Inhalt vonWo werden Bibliotheken von Drittanbietern in Python installiert?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!