Conda install does not install the latest version #1206
-
conda install botorch -c pytorch -c gpytorch installs botorch 0.6.2 on my win10. conda install botorch=0.6.4 -c pytorch -c gpytorch (or 0.6.3) gives "The following packages are not available from current channels:" Is there some channel I need to add to allow Conda to actually install the latest version of Botorch? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
conda install -c conda-forge botorch solves the problem. Perhaps the installation instructions should be updated accordingly? |
Beta Was this translation helpful? Give feedback.
-
Hmm this is odd. Using the pytorch channel is the recommended way of installing botorch from conda (this is maintained by us, the conda-forge version is a copy). The conda package on the pytorch channel is up to date and a noarch package and so the fact that this is windows shouldn't really matter. I see you mixed the order of the flags and the positional args - I don't think this should matter, but what happens if you do cc @saitcakmak who made the latest release. |
Beta Was this translation helpful? Give feedback.
conda install -c conda-forge botorch solves the problem.
Perhaps the installation instructions should be updated accordingly?