1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/immich_ynh.git synced 2024-09-03 20:36:24 +02:00
This commit is contained in:
Sylvain 2024-04-02 22:47:56 +02:00
parent 9d9fed376c
commit a0737899a9

View file

@ -160,6 +160,7 @@ myynh_install_immich() {
chmod 750 "$install_dir/app/machine-learning" chmod 750 "$install_dir/app/machine-learning"
chmod -R o-rwx "$install_dir/app/machine-learning" chmod -R o-rwx "$install_dir/app/machine-learning"
chown -R $app:$app "$install_dir/app/machine-learning" chown -R $app:$app "$install_dir/app/machine-learning"
ynh_exec_as $app $py_app_version -m venv "$install_dir/app/machine-learning/venv" ynh_exec_as $app $py_app_version -m venv "$install_dir/app/machine-learning/venv"
( (
# activate the virtual environment # activate the virtual environment
@ -168,7 +169,7 @@ myynh_install_immich() {
set -o nounset set -o nounset
# add pip # add pip
ynh_exec_as $app "$install_dir/bin/python3" -m ensurepip ynh_exec_as $app "$install_dir/app/machine-learning/venv/bin/python3" -m ensurepip
# add poetry # add poetry
ynh_exec_warn_less ynh_exec_as $app "$install_dir/app/machine-learning/venv/bin/pip3" install --upgrade poetry ynh_exec_warn_less ynh_exec_as $app "$install_dir/app/machine-learning/venv/bin/pip3" install --upgrade poetry