We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30c5567 commit 7347001Copy full SHA for 7347001
1 file changed
.github/workflows/build.yml
@@ -27,6 +27,15 @@ jobs:
27
python-version: ${{ matrix.python-version }}
28
architecture: ${{ matrix.architecture }}
29
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
+
39
- name: Install PyQt
40
run: pip install -r requirements.txt
41
0 commit comments