We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c042ceb commit 1f3400eCopy full SHA for 1f3400e
.github/workflows/ci-emscripten.yml
@@ -27,8 +27,11 @@ jobs:
27
steps:
28
- name: Install dependencies
29
run: |
30
- brew install ninja emscripten pipx
31
- pipx install Pillow
+ brew install ninja emscripten
+ 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
35
36
- uses: actions/checkout@v3
37
with:
0 commit comments