Unable to install turicreate in anaconda

断了今生、忘了曾经 提交于 2020-02-25 04:17:23

问题


I am trying to install turicreate in anaconda but i unable to do it. I tried to run a command

conda install -c derickl turicreate

but promt gives an error

Solving environment: failed PackagesNotFoundError: The following packages are not available from current channels: - turicreate

I also tried by run some other commands also but none of them able to installed turicreate.... can someone help ?


回答1:


There is no official Conda package for Turi Create, and that user channel you are trying to install from has apparently switched to being private. Instead, follow the official directions and install from PyPI (after activating your env).

conda activate my_env
pip install turicreate

Do not install this in base env! Be aware that once you use pip install in a Conda env, the env is effectively unstable, and can no longer be managed reliably by Conda. For this reason, always install PyPI packages last or use an environment YAML file. If you know that the package has dependencies (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".



来源:https://stackoverflow.com/questions/58068783/unable-to-install-turicreate-in-anaconda

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!