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 705d708 commit c23bd48Copy full SHA for c23bd48
.github/workflows/test.yml
@@ -24,9 +24,9 @@ jobs:
24
conda create -q -n test-environment python=${{ matrix.python-version }}
25
source activate test-environment
26
if [[ "${{ matrix.pytorch-version }}" == "nightly" ]]; then
27
- conda install pytorch cpuonly -c pytorch-nightly
+ conda install pytorch torchvision cpuonly -c pytorch-nightly
28
else
29
- conda install pytorch==${{ matrix.pytorch-version }} cpuonly -c pytorch
+ conda install pytorch==${{ matrix.pytorch-version }} torchvision cpuonly -c pytorch
30
fi
31
conda install flake8
32
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
0 commit comments