1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyload_ynh.git synced 2024-09-03 20:16:04 +02:00

Update restore

This commit is contained in:
yalh76 2022-03-27 13:03:55 +02:00
parent 3743c66b3b
commit 63411157a5

View file

@ -91,6 +91,19 @@ ynh_script_progression --message="Reinstalling dependencies..."
# Define and install dependencies # Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies ynh_install_app_dependencies $pkg_dependencies
#=================================================
# INSTALL PYTHON DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing Python dependencies..."
pushd $final_path
python3 -m venv $final_path/venv
source $final_path/venv/bin/activate
pip install --upgrade pip
pip install --upgrade pyyaml
pip install --pre pyload-ng[all]
popd
#================================================= #=================================================
# RESTORE SYSTEMD # RESTORE SYSTEMD
#================================================= #=================================================