Fix virtualenv setup
This commit is contained in:
parent
699d7553c5
commit
7d88c60ed1
@ -114,7 +114,7 @@ ynh_system_user_create "$app" "$final_path"
|
|||||||
# pip installation
|
# pip installation
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
virtualenv "$final_path/local"
|
virtualenv --python=$(which python2 python | head -n 1) "$final_path/local"
|
||||||
# Init virtualenv
|
# Init virtualenv
|
||||||
(
|
(
|
||||||
set +o nounset
|
set +o nounset
|
||||||
@ -122,10 +122,10 @@ virtualenv "$final_path/local"
|
|||||||
set -o nounset
|
set -o nounset
|
||||||
cd "$final_path"
|
cd "$final_path"
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip
|
||||||
pip install pyramid_chameleon
|
pip install --upgrade pyramid_chameleon
|
||||||
CFLAGS="-Wno-error -Wno-error=format-security" \
|
CFLAGS="-Wno-error -Wno-error=format-security" \
|
||||||
ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future" \
|
ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future" \
|
||||||
pip install --requirement "$final_path/requirements.txt"
|
pip install --upgrade --requirement "$final_path/requirements.txt"
|
||||||
|
|
||||||
python "$final_path/setup.py" develop
|
python "$final_path/setup.py" develop
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ ynh_system_user_create "$app"
|
|||||||
# pip installation
|
# pip installation
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
virtualenv "$final_path/local"
|
virtualenv --python=$(which python2 python | head -n 1) "$final_path/local"
|
||||||
# Init virtualenv
|
# Init virtualenv
|
||||||
(
|
(
|
||||||
set +o nounset
|
set +o nounset
|
||||||
@ -141,10 +141,10 @@ virtualenv "$final_path/local"
|
|||||||
set -o nounset
|
set -o nounset
|
||||||
cd "$final_path"
|
cd "$final_path"
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip
|
||||||
pip install pyramid_chameleon
|
pip install --upgrade pyramid_chameleon
|
||||||
CFLAGS="-Wno-error -Wno-error=format-security" \
|
CFLAGS="-Wno-error -Wno-error=format-security" \
|
||||||
ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future" \
|
ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future" \
|
||||||
pip install --requirement "$final_path/requirements.txt"
|
pip install --upgrade --requirement "$final_path/requirements.txt"
|
||||||
|
|
||||||
python "$final_path/setup.py" develop
|
python "$final_path/setup.py" develop
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user