Skip to content

Commit 7347001

Browse files
committed
force install dependencies on ubuntu
1 parent 30c5567 commit 7347001

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ jobs:
2727
python-version: ${{ matrix.python-version }}
2828
architecture: ${{ matrix.architecture }}
2929

30+
- name: Install Missing libs
31+
if: matrix.os == 'ubuntu-latest'
32+
run: |
33+
: # https://askubuntu.com/questions/1485442/issue-with-installing-pyqt6-on-ubuntu-22-04
34+
sudo apt update
35+
sudo apt-get install -y libegl1
36+
sudo apt-get install -y libxcb-xinerama0
37+
sudo apt-get install -y -qq libglu1-mesa-dev libx11-xcb-dev '^libxcb*'
38+
3039
- name: Install PyQt
3140
run: pip install -r requirements.txt
3241

0 commit comments

Comments
 (0)