Error: Unable to find conda binary. Is Anaconda installed? reticulate Rstudio

梦想的初衷 提交于 2019-12-23 17:32:21

问题


I installed reticulate via Rstudio. Now i want to use conda_create() but I installed anaconda in another directory then the default. How can I change the directory in which Rstudio is searching for anaconda?

Error: Unable to find conda binary. Is Anaconda installed?

回答1:


The directory should be in your path. But you can check where it is like this:

Sys.which("python")

If you have multiple python versions (or it is not in your path), then you can specify a different location with use_python for where the python binary is located and use_conda for the conda environment.

More info can be found in this reticulate vignette



来源:https://stackoverflow.com/questions/52372425/error-unable-to-find-conda-binary-is-anaconda-installed-reticulate-rstudio

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