This commit is contained in:
unknown
2025-12-15 15:42:55 -08:00
parent 7e5497961f
commit ef0900a88d
3 changed files with 8 additions and 8 deletions

View File

@@ -620,7 +620,7 @@ function install_python_packages {
echo "[ebook2audiobook] Installing dependencies..."
python3 -m pip cache purge > /dev/null 2>&1
python3 -m pip install --upgrade pip > /dev/null 2>&1
python3 -m pip install --upgrade --no-cache-dir --use-pep517 --progress-bar on -r "$SCRIPT_DIR/requirements.txt" || exit 1
python3 -m pip install --upgrade --no-cache-dir --use-pep517 --progress-bar on --disable-pip-version-check -r "$SCRIPT_DIR/requirements.txt" || exit 1
python3 -m unidic download || exit 1
echo "[ebook2audiobook] Installation completed."
return 0