Skip to content

Commit cfca559

Browse files
committed
Use pip as a module and not directly.
1 parent 6a8bff6 commit cfca559

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ jobs:
7575
fi
7676
- name: Install dependencies
7777
run: |
78-
pip install --upgrade pip
79-
pip install -r requirements_dev.txt
78+
python -m pip install --upgrade pip
79+
python -m pip install -r requirements_dev.txt
8080
jupyter nbextension enable --py --sys-prefix widgetsnbextension
8181
- name: Install SimpleITK from test PyPi from manually launched workflow
8282
if: ${{ inputs.testPyPi }}

0 commit comments

Comments
 (0)