We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93b9528 commit c3194d0Copy full SHA for c3194d0
.jenkins/build.sh
@@ -25,8 +25,11 @@ pip install -e git+git://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch
25
# this is a workaround to the issue.
26
pip install sphinx-gallery tqdm matplotlib ipython pillow==4.1.1
27
28
-# Install torchvision from pip
29
-pip install torchvision --no-deps
+# Install torchvision from source
+git clone https://github.com/pytorch/vision --quiet
30
+pushd vision
31
+pip install . --no-deps # We don't want it to install the stock PyTorch version from pip
32
+popd
33
34
# Install torchaudio from source
35
git clone https://github.com/pytorch/audio --quiet
0 commit comments