From b1baae6c836d87785337ff7c78054081b3d5ebdb Mon Sep 17 00:00:00 2001 From: mara Date: Mon, 10 Jun 2024 14:52:51 +0200 Subject: [PATCH] update --- install.sh | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/install.sh b/install.sh index 4a4991d..a4abb09 100644 --- a/install.sh +++ b/install.sh @@ -294,30 +294,36 @@ mkdir -p ~/.local/bin mkdir -p ~/.local/src && cd ~/.local/src # Git src install ---------------------------------------------------------- -#if [ -d qtile ]; then -# rm -rf qtile -#fi - -#git clone https://github.com/qtile/qtile.git && cd qtile && pip install . --break-system-packages --no-warn-script-location - - -# Python3 venv install ----------------------------------------------------- - -python3 -m venv qtile_venv && cd qtile_venv - if [ -d qtile ]; then rm -rf qtile fi git clone https://github.com/qtile/qtile.git +cd qtile -. ~/.local/src/qtile_venv/bin/activate -pip3 install dbus-next psutil -pip install -r qtile/requirements.txt -bin/pip install qtile/. -deactivate +pip install dbus-next psutil wheel +pip install -r requirements.txt -cp ~/.local/src/qtile_venv/bin/qtile ~/.local/bin/ +pip install . --break-system-packages --no-warn-script-location + + +# Python3 venv install ----------------------------------------------------- + +#python3 -m venv qtile_venv && cd qtile_venv + +#if [ -d qtile ]; then +# rm -rf qtile +#fi + +#git clone https://github.com/qtile/qtile.git + +#. ~/.local/src/qtile_venv/bin/activate +#pip install dbus-next psutil wheel +#pip install -r qtile/requirements.txt +#bin/pip install qtile/. +#deactivate + +#cp ~/.local/src/qtile_venv/bin/qtile ~/.local/bin/ # ------------------------------------------------------------------------