mirror of
https://github.com/YunoHost-Apps/searx_ynh.git
synced 2024-09-03 20:16:30 +02:00
Update upgrade
This commit is contained in:
parent
fd2e7d995f
commit
6347392590
1 changed files with 20 additions and 10 deletions
|
@ -116,19 +116,29 @@ ynh_system_user_create --username=$app
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Upgrading Searx..." --weight=7
|
ynh_script_progression --message="Upgrading Searx..." --weight=7
|
||||||
|
|
||||||
# Clean venv if it still on python2
|
# # Clean venv if it still on python2
|
||||||
if [ ! -e $final_path/bin/python2.* ]
|
# if [ ! -e $final_path/bin/python3 ]
|
||||||
then
|
# then
|
||||||
ynh_secure_remove --file=$final_path/lib/ --regex='python[^/.]*'
|
# ynh_secure_remove --file=$final_path/lib/ --regex='python[^/.]*'
|
||||||
ynh_secure_remove --file=$final_path/lib64/ --regex='python[^/.]*'
|
# ynh_secure_remove --file=$final_path/lib64/ --regex='python[^/.]*'
|
||||||
ynh_secure_remove --file=$final_path/share/python-wheels
|
# ynh_secure_remove --file=$final_path/share/python-wheels
|
||||||
fi
|
# fi
|
||||||
ynh_secure_remove --file=$final_path/lib/python3.7/site-packages/setuptools
|
# ynh_secure_remove --file=$final_path/lib/python3.7/site-packages/setuptools
|
||||||
ynh_secure_remove --file=$final_path/lib/python3.7/site-packages/ --regex='setuptools-[^/.]*'
|
# ynh_secure_remove --file=$final_path/lib/python3.7/site-packages/ --regex='setuptools-[^/.]*'
|
||||||
|
# python3 -m venv --system-site-packages "$final_path"
|
||||||
|
# set +u; source $final_path/bin/activate; set -u
|
||||||
|
# pip3 install -U setuptools
|
||||||
|
# pip3 install --requirement $final_path/requirements-ynh.txt --upgrade
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
python3 -m venv --system-site-packages "$final_path"
|
python3 -m venv --system-site-packages "$final_path"
|
||||||
set +u; source $final_path/bin/activate; set -u
|
set +u; source $final_path/bin/activate; set -u
|
||||||
pip3 install -U setuptools
|
pip3 install -U setuptools
|
||||||
pip3 install --requirement $final_path/requirements-ynh.txt --upgrade
|
pip3 install --requirement $final_path/requirements-ynh.txt
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# CONFIGURE SEARX
|
# CONFIGURE SEARX
|
||||||
|
|
Loading…
Add table
Reference in a new issue