Skip to content

Commit

Permalink
Avoid using conda develop
Browse files Browse the repository at this point in the history
conda-build folks say: `pip install -e` is still recommended. `conda develop` has not seen any development lately.
conda/conda-build#1992 (comment)
  • Loading branch information
Balandat committed Sep 10, 2020
1 parent de486e3 commit 3346e31
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scripts/install_via_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

0 comments on commit 3346e31

Please sign in to comment.