Skip to content

Commit

Permalink
Clean up and try fixing embedded pip
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsavol committed Jun 12, 2024
1 parent 71579f1 commit 6fbdc23
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/make_bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,24 +49,23 @@ jobs:
Add-Content ./*._pth "Lib"
Add-Content ./*._pth "Lib/site-packages"
cat ./*._pth
- name: Install pip for embedded Python
- name: Download get-pip.py
run: |
cd embedded-python
curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py
dir
- name: Run get-pip.py
- name: Install pip for embedded Python
run : |
cd embedded-python
$PWD
./python.exe get-pip.py
dir
- name: Install packages for embedded Python
run: |
$PWD
cd embedded-python/Scripts
pip --version
$PWD
pip install ipykernel jill
./pip.exe --version
./pip.exe install ipykernel jill
- name: List packages in embedded Python
run: |
cd embedded-python/Scripts
./pip.exe list
- name: Build bundle
run: |
python -m PyInstaller spinetoolbox.spec -- --embedded-python=embedded-python
Expand Down

0 comments on commit 6fbdc23

Please sign in to comment.