Skip to content

Commit

Permalink
Avoid using conda develop (#541)
Browse files Browse the repository at this point in the history
Summary:
conda-build folks say: `pip install -e` is still recommended. `conda develop` has not seen any development lately.
conda/conda-build#1992 (comment)

Pull Request resolved: #541

Reviewed By: danielrjiang

Differential Revision: D23634882

Pulled By: Balandat

fbshipit-source-id: e611f8a39ce5ce7a2e0fc8f8fac931617a41d241
  • Loading branch information
Balandat authored and facebook-github-bot committed Sep 10, 2020
1 parent d44b90d commit 82b75fc
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 pip 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 82b75fc

Please sign in to comment.