diff --git a/install/jupyternotebook-install.sh b/install/jupyternotebook-install.sh index 2c3162a68..4b8229d7c 100644 --- a/install/jupyternotebook-install.sh +++ b/install/jupyternotebook-install.sh @@ -18,8 +18,10 @@ PYTHON_VERSION="3.12" setup_uv msg_info "Installing Jupyter" mkdir -p /opt/jupyter cd /opt/jupyter -$STD uv venv .venv -$STD .venv/bin/uv pip install jupyter +$STD uv venv /opt/jupyter/.venv +$STD /opt/jupyter/.venv/bin/python -m ensurepip --upgrade +$STD /opt/jupyter/.venv/bin/python -m pip install --upgrade pip +$STD /opt/jupyter/.venv/bin/python -m pip install jupyter msg_ok "Installed Jupyter" msg_info "Creating Service" diff --git a/install/kometa-install.sh b/install/kometa-install.sh index 9368c1997..64b79e4eb 100644 --- a/install/kometa-install.sh +++ b/install/kometa-install.sh @@ -22,9 +22,10 @@ curl -fsSL "https://github.com/Kometa-Team/Kometa/archive/refs/tags/v${RELEASE}. tar -xzf "$tmp_file" mv "Kometa-${RELEASE}" /opt/kometa cd /opt/kometa - -$STD uv venv .venv -$STD .venv/bin/uv pip install -r requirements.txt +$STD uv venv /home/wger/.venv +$STD /opt/kometa/.venv/bin/python -m ensurepip --upgrade +$STD /opt/kometa/.venv/bin/python -m pip install --upgrade pip +$STD /opt/kometa/.venv/bin/python -m pip install -r requirements.txt mkdir -p config/assets cp config/config.yml.template config/config.yml echo "$RELEASE" >/opt/kometa_version.txt diff --git a/install/lazylibrarian-install.sh b/install/lazylibrarian-install.sh index 2374cd6f1..49fe2e89d 100644 --- a/install/lazylibrarian-install.sh +++ b/install/lazylibrarian-install.sh @@ -28,8 +28,10 @@ msg_ok "Installed Dependencies" msg_info "Installing LazyLibrarian" $STD git clone https://gitlab.com/LazyLibrarian/LazyLibrarian /opt/LazyLibrarian cd /opt/LazyLibrarian -$STD uv venv .venv -$STD .venv/bin/uv pip install . jaraco.stream python-Levenshtein soupsieve pypdf +$STD uv venv /opt/LazyLibrarian/.venv +$STD /opt/LazyLibrarian/.venv/bin/python -m ensurepip --upgrade +$STD /opt/LazyLibrarian/.venv/bin/python -m pip install --upgrade pip +$STD /opt/LazyLibrarian/.venv/bin/python -m pip install . jaraco.stream python-Levenshtein soupsieve pypdf msg_ok "Installed LazyLibrarian" msg_info "Creating Service" diff --git a/install/medusa-install.sh b/install/medusa-install.sh index 5726df0c1..e8eeacb41 100644 --- a/install/medusa-install.sh +++ b/install/medusa-install.sh @@ -32,8 +32,10 @@ msg_ok "Installed Dependencies" msg_info "Installing Medusa" $STD git clone https://github.com/pymedusa/Medusa.git /opt/medusa cd /opt/medusa -$STD uv venv .venv -$STD .venv/bin/uv pip install . +$STD uv venv /opt/medusa/.venv +$STD /opt/LazyLibrarian/.venv/bin/python -m ensurepip --upgrade +$STD /opt/LazyLibrarian/.venv/bin/python -m pip install --upgrade pip +$STD /opt/LazyLibrarian/.venv/bin/python -m pip install . msg_ok "Installed Medusa" msg_info "Creating Service"