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 6b2cbb9 commit 94d2eb9Copy full SHA for 94d2eb9
.github/workflows/install.yml
@@ -43,5 +43,13 @@ jobs:
43
- name: Upgrade pip
44
run: python -m pip install -U pip
45
46
+ - name: Install PyTorch CPU
47
+ if: matrix.env == 'conda'
48
+ run: conda install pytorch cpuonly -c pytorch
49
+
50
51
+ if: matrix.env == 'pip'
52
+ run: pip install torch --index-url https://download.pytorch.org/whl/cpu
53
54
- name: Install pufferlib
- run: pip install -e .
55
+ run: pip install -e . --no-build-isolation
0 commit comments