Skip to content

Commit 3bde3b6

Browse files
Balandatfacebook-github-bot
authored andcommitted
Fix conda command for pytorch nightlies (#227)
Summary: The location of the pytorch nightlies in conda has changed, this updates the installation script accordingly. Pull Request resolved: #227 Test Plan: Tested locally with circleci cmd line + docker Reviewed By: sdaulton Differential Revision: D16737824 Pulled By: Balandat fbshipit-source-id: 7e0c45ee003978b82da0563e167c30b2be604573
1 parent 8b038d2 commit 3bde3b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/install_via_conda.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ conda install -y conda-build
2020

2121
if [[ $PYTORCH_NIGHTLY == true ]]; then
2222
# install CPU version for much smaller download
23-
conda install -y -c pytorch pytorch-nightly-cpu
23+
conda install -y -c pytorch-nightly pytorch cpuonly
2424
else
2525
# install CPU version for much smaller download
26-
conda install -y -c pytorch pytorch-cpu
26+
conda install -y -c pytorch pytorch cpuonly
2727
fi
2828

2929
# get gpytorch master

0 commit comments

Comments
 (0)