File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ pytorch_tutorial_build_defaults: &pytorch_tutorial_build_defaults
113
113
command : |
114
114
set -e
115
115
116
- export pyTorchDockerImageTag=291
116
+ export pyTorchDockerImageTag=300
117
117
echo "PyTorchDockerImageTag: "${pyTorchDockerImageTag}
118
118
119
119
cat >/home/circleci/project/ci_build_script.sh <<EOL
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ sudo apt-get install -y --no-install-recommends unzip p7zip-full sox libsox-dev
14
14
export PATH=/opt/conda/bin:$PATH
15
15
rm -rf src
16
16
pip install -r $DIR /../requirements.txt
17
- pip uninstall -y torchvision || true
18
17
19
18
export PATH=/opt/conda/bin:$PATH
20
19
conda install -y sphinx==1.8.2 pandas
@@ -25,8 +24,10 @@ pip install -e git+git://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch
25
24
# this is a workaround to the issue.
26
25
pip install sphinx-gallery tqdm matplotlib ipython pillow==4.1.1
27
26
28
- # Install torchvision from pip
29
- pip install torchvision --no-deps
27
+ # Install torchvision from conda
28
+ pip uninstall -y torchvision || true
29
+ pip uninstall -y torchvision || true
30
+ conda install -c pytorch torchvision
30
31
31
32
# Install torchaudio from source
32
33
git clone https://github.com/pytorch/audio --quiet
You can’t perform that action at this time.
0 commit comments