2021-04-18 19:40:58 -05:00
|
|
|
#!/bin/bash
|
|
|
|
mkdir -p /usr/lib/plchat
|
|
|
|
cd /usr/lib/plchat
|
2021-04-25 14:37:04 -05:00
|
|
|
python3 -m venv --system-site-packages venv
|
2021-04-18 19:40:58 -05:00
|
|
|
source venv/bin/activate
|
2021-04-25 14:37:04 -05:00
|
|
|
pip3 install PyQt5==5.15.4 PyQt5-Qt5 PyQt5-sip notify-py
|
|
|
|
ln -sf /usr/lib/plchat/plchatdeb.py /usr/bin/plchat
|