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 4b1b5cb commit cccc1efCopy full SHA for cccc1ef
.github/workflows/basic.yml
@@ -440,8 +440,13 @@ jobs:
440
with:
441
fetch-depth: 0
442
443
- - name: Install Python requirements
444
- run: python3 -m pip install -r third_party/requirements.txt
+ # Latest distros do not allow global pip installation
+ - name: Install Python requirements in venv
445
+ run: |
446
+ python3 -m venv .venv
447
+ . .venv/bin/activate
448
+ echo "$PATH" >> $GITHUB_PATH
449
+ python3 -m pip install -r third_party/requirements.txt
450
451
- name: Install hwloc
452
run: brew install hwloc jemalloc tbb
0 commit comments