From 3346e31dad1c9b1980b8d38a553d800e042eaf12 Mon Sep 17 00:00:00 2001 From: Max Balandat Date: Thu, 10 Sep 2020 13:52:24 -0700 Subject: [PATCH] Avoid using conda develop conda-build folks say: `pip install -e` is still recommended. `conda develop` has not seen any development lately. https://github.com/conda/conda-build/issues/1992#issuecomment-525777055 --- scripts/install_via_conda.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/install_via_conda.sh b/scripts/install_via_conda.sh index f12bab6311..e9581197fc 100755 --- a/scripts/install_via_conda.sh +++ b/scripts/install_via_conda.sh @@ -28,15 +28,15 @@ else conda install -y -c pytorch pytorch cpuonly fi +# install other deps +conda install -y scipy sphinx pytest flake8 +conda install -y -c conda-forge black pytest-cov sphinx-autodoc-typehints + # get gpytorch master git clone https://github.com/cornellius-gp/gpytorch.git ../gpytorch # install gpytorch -conda develop ../gpytorch - -# install other deps -conda install -y scipy sphinx pytest flake8 -conda install -y -c conda-forge black pytest-cov sphinx-autodoc-typehints +pip install -e ../gpytorch # install botorch -conda develop . +pip install -e .