i had some issues installing and running patchance on my debian (avlinux)
$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 12 (bookworm)
Release: 12
Codename: bookworm
$ make
compiling for Qt5 using PyQt5
rm -f *~ patchbay/resources_rc.py \
locale/*.qm patchbay/ui/*.py
install -d patchbay/ui/
rcc -g python resources/resources.qrc |sed 's/ PySide. / qtpy /' > patchbay/resources_rc.py
rcc: could not exec '/usr/lib/qt5/bin/rcc': No such file or directory
$ src/patchance.py
Traceback (most recent call last):
File "/home/studio/sources/Patchance/src/patchance.py", line 42, in <module>
from qtpy.QtWidgets import QApplication
ModuleNotFoundError: No module named 'qtpy'
To solve the issue, I added two packages
$ sudo apt-get install qtbase5-dev-tools python3-qtpy
Thanks for this great job
i had some issues installing and running patchance on my debian (avlinux)
To solve the issue, I added two packages
$ sudo apt-get install qtbase5-dev-tools python3-qtpyThanks for this great job