2021-04-18 19:40:58 -05:00
|
|
|
#!/bin/bash
|
|
|
|
mkdir -p /usr/lib/plchat
|
|
|
|
cd /usr/lib/plchat
|
|
|
|
python3 -m venv venv
|
|
|
|
source venv/bin/activate
|
|
|
|
pip3 install PyQt5==5.15.4 PyQt5-Qt5 PyQt5-sip certifi cryptography
|
2021-04-19 16:34:15 -05:00
|
|
|
ln -sf /usr/lib/plchat/dist/plchat /usr/bin/plchat
|