Skip to content

Commit 1f3400e

Browse files
Suriya Dakshina MurthySuriya Dakshina Murthy
authored andcommitted
pipx->python venv
1 parent c042ceb commit 1f3400e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci-emscripten.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ jobs:
2727
steps:
2828
- name: Install dependencies
2929
run: |
30-
brew install ninja emscripten pipx
31-
pipx install Pillow
30+
brew install ninja emscripten
31+
python3 -m venv venv # Create a virtual environment
32+
source venv/bin/activate # Activate the virtual environment
33+
python3 -m pip install --upgrade pip
34+
python3 -m pip install Pillow # Install Pillow in the venv
3235
3336
- uses: actions/checkout@v3
3437
with:

0 commit comments

Comments
 (0)