From 9c522a45ea4af46721740fbd44fec8d3cf88aaea Mon Sep 17 00:00:00 2001 From: "Esteban Mackay Q." Date: Mon, 3 Feb 2025 12:57:25 -0500 Subject: [PATCH] Update install.sh --- install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 2a90ea1..6e38f6f 100644 --- a/install.sh +++ b/install.sh @@ -94,8 +94,10 @@ fi # Instalación de módulos pip según el sistema operativo if [ "$OS" == "debian" ] && [ "$VERSION" == "12" ]; then /usr/bin/python3 -m pip install --break-system-packages pyOpenSSL autobahn jinja2 dmr-utils3 ansi2html aprslib tinydb mysqlclient setproctitle pynmea2 maidenhead Twisted spyne Pyro5 bitstring bitarray dmr_utils3 configparser resettabletimer setuptools wheel MarkupSafe service-identity - sudo pip3 uninstall -y twisted --quiet - sudo pip3 install twisted --quiet + source myenv/bin/activate + /usr/bin/python3 -m pip uninstall --break-system-packages twisted -y + /usr/bin/python3 -m pip install --break-system-packages twisted==22.10.0 + deactivate else /usr/bin/python3 -m pip install --upgrade pyOpenSSL autobahn jinja2 dmr-utils3 ansi2html aprslib tinydb mysqlclient setproctitle pynmea2 maidenhead Twisted spyne Pyro5 bitstring bitarray dmr_utils3 configparser resettabletimer setuptools wheel MarkupSafe service-identity sudo pip3 uninstall -y twisted --quiet