Gracefully ignore issues linking Python

This commit is contained in:
doctorpangloss 2024-06-17 16:44:57 -07:00
parent 11ec81cbc4
commit 84d5dd0092

View File

@ -30,7 +30,7 @@ jobs:
apt install -y nodejs python3 python3-setuptools git build-essential ffmpeg libsm6 libxext6
pip uninstall -y $(pip list --format=freeze | grep opencv) &&
rm -rf /usr/local/lib/python3.10/dist-packages/cv2/ || rm -rf /usr/local/lib/python3.11/dist-packages/cv2/ || rm -rf /usr/local/lib/python3.12/dist-packages/cv2/
ln -s `which python3` /usr/bin/python
ln -s `which python3` /usr/bin/python || true
- uses: actions/checkout@v4
- name: Install dependencies
run: |