无法在anaconda中安装turicreate
Unable to install turicreate in anaconda
我正在尝试在 anaconda 中安装 turicreate,但我无法安装。
我尝试 运行 命令
conda install -c derickl turicreate
但是提示报错
解决环境:失败
PackagesNotFoundError:当前渠道不提供以下软件包:
- turicreate
我也尝试了 运行 其他一些命令,但 none 其中的命令能够安装 turicreate....
有人可以帮忙吗?
没有用于 Turi Create 的官方 Conda 软件包,您尝试安装的用户频道显然已切换为私有。相反,请按照 the official directions 并从 PyPI 安装(在激活您的环境之后)。
conda activate my_env
pip install turicreate
不要在 base
env 中安装它! 请注意,一旦在 Conda env 中使用 pip install
,env 实际上是不稳定的,并且不能再由 Conda 可靠地管理。因此,请始终在最后安装 PyPI 包或使用环境 YAML 文件。如果您知道该包具有依赖项 (they can usually be found in the setup.py
) that are available from Conda, install those first through Conda. I strongly encourage following the best practice recommendations found in "Using Pip in a Conda Environment".
我正在尝试在 anaconda 中安装 turicreate,但我无法安装。 我尝试 运行 命令
conda install -c derickl turicreate
但是提示报错
解决环境:失败 PackagesNotFoundError:当前渠道不提供以下软件包: - turicreate
我也尝试了 运行 其他一些命令,但 none 其中的命令能够安装 turicreate.... 有人可以帮忙吗?
没有用于 Turi Create 的官方 Conda 软件包,您尝试安装的用户频道显然已切换为私有。相反,请按照 the official directions 并从 PyPI 安装(在激活您的环境之后)。
conda activate my_env
pip install turicreate
不要在 base
env 中安装它! 请注意,一旦在 Conda env 中使用 pip install
,env 实际上是不稳定的,并且不能再由 Conda 可靠地管理。因此,请始终在最后安装 PyPI 包或使用环境 YAML 文件。如果您知道该包具有依赖项 (they can usually be found in the setup.py
) that are available from Conda, install those first through Conda. I strongly encourage following the best practice recommendations found in "Using Pip in a Conda Environment".