无法在 linux 中使用 anaconda 安装 qutip
Can't install qutip with anaconda in linux
我有来自 linux 32 的最新 anaconda 版本。我正在尝试使用命令
安装 qutip
conda install qutip
但是包裹不见了。我已经尝试添加 conda-forge 频道。
知道包裹丢失的原因吗?根据 Qutip 文档,这应该是安装软件包的一种可能方法。
Error message:
Fetching package metadata ...........
PackageNotFoundError: Packages missing in current channels:
- qutip
We have searched for the packages in the following channels:
- https://conda.anaconda.org/conda-forge/linux-32
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.continuum.io/pkgs/free/linux-32
- https://repo.continuum.io/pkgs/free/noarch
- https://repo.continuum.io/pkgs/r/linux-32
- https://repo.continuum.io/pkgs/r/noarch
- https://repo.continuum.io/pkgs/pro/linux-32
- https://repo.continuum.io/pkgs/pro/noarch
您需要添加一个频道来安装,其中包括您的构建架构。 conda-forge
频道只有 linux-64
个构建:https://anaconda.org/search?q=qutip It doesn't look like there are any channels that support linux-32
, but you can find the recipe for conda build here: https://github.com/conda-forge/qutip-feedstock,因此您可以构建自己的程序包。
确实,我们没有基于 conda 的 linux32 构建。您可以通过 pip 安装,也可以从源代码构建。
我有来自 linux 32 的最新 anaconda 版本。我正在尝试使用命令
安装 qutipconda install qutip
但是包裹不见了。我已经尝试添加 conda-forge 频道。
知道包裹丢失的原因吗?根据 Qutip 文档,这应该是安装软件包的一种可能方法。
Error message:
Fetching package metadata ...........
PackageNotFoundError: Packages missing in current channels:
- qutip
We have searched for the packages in the following channels:
- https://conda.anaconda.org/conda-forge/linux-32
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.continuum.io/pkgs/free/linux-32
- https://repo.continuum.io/pkgs/free/noarch
- https://repo.continuum.io/pkgs/r/linux-32
- https://repo.continuum.io/pkgs/r/noarch
- https://repo.continuum.io/pkgs/pro/linux-32
- https://repo.continuum.io/pkgs/pro/noarch
您需要添加一个频道来安装,其中包括您的构建架构。 conda-forge
频道只有 linux-64
个构建:https://anaconda.org/search?q=qutip It doesn't look like there are any channels that support linux-32
, but you can find the recipe for conda build here: https://github.com/conda-forge/qutip-feedstock,因此您可以构建自己的程序包。
确实,我们没有基于 conda 的 linux32 构建。您可以通过 pip 安装,也可以从源代码构建。