将软件包添加到 Linux 中 Python 的特定安装

Add package to specific install of Python in Linux

我正在尝试将 xmltodict 包添加到 Linux 上的 Python。

我的 Linux 版本安装了 2 个 Python; Python 2.7(默认)和 Python 3.5(以 Anaconda 安装的形式)。我想将 xmltodict 添加到 Python 3 安装中,但是当我使用 sudo apt-get install python-xmltodict 时,它会将其添加到默认的 Python 2.7 安装中。

如何在不更改默认值或不使用 pip 的情况下将此软件包添加到我的 Python 3 安装中?我也不想用虚拟环境重建我的安装

您可以使用 conda 进行安装

conda install -c conda-forge xmltodict=0.11.0

这应该有效

如果你想用 pip 或 easy-install 安装,你可以 运行 pip2/pip2.7 并安装它。它将安装用于 Python 用于 运行 pip...