1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/immich_ynh.git synced 2024-09-03 20:36:24 +02:00

Update myynh_install_python

This commit is contained in:
Sylvain 2024-08-28 11:15:53 +02:00
parent caa4203748
commit b1d8d81640

View file

@ -66,7 +66,7 @@ myynh_install_python() {
if $(dpkg --compare-versions $py_apt_version ge $python) if $(dpkg --compare-versions $py_apt_version ge $python)
then then
# APT >= Required # APT >= Required
ynh_print_info --message="Using provided python3..." ynh_print_info --message="Using OS provided python3..."
py_app_version="python3" py_app_version="python3"
@ -75,13 +75,13 @@ myynh_install_python() {
if $(dpkg --compare-versions $py_built_version ge $python) if $(dpkg --compare-versions $py_built_version ge $python)
then then
# Built >= Required # Built >= Required
ynh_print_info --message="Using already used python3 built version..." ynh_print_info --message="Using already python3 built version: $py_app_version"
py_app_version="/usr/local/bin/python${py_built_version%.*}" py_app_version="/usr/local/bin/python${py_built_version%.*}"
else else
# APT < Minimal & Actual < Minimal => Build & install Python into /usr/local/bin # APT < Minimal & Actual < Minimal => Build & install Python into /usr/local/bin
ynh_print_info --message="Building python (may take a while)..." ynh_print_info --message="Building python3 : $python (may take a while)..."
# Store current direcotry # Store current direcotry
local MY_DIR=$(pwd) local MY_DIR=$(pwd)
@ -115,6 +115,10 @@ myynh_install_python() {
fi fi
# Save python version in settings # Save python version in settings
ynh_app_setting_set --app=$app --key=python --value="$python" ynh_app_setting_set --app=$app --key=python --value="$python"
# Print some version information
ynh_print_info --message="Python version: $($py_app_version -VV)"
ynh_print_info --message="Pip version: $($py_app_version -m pip -V)"
} }
# Install immich # Install immich