From 58b967e0c9cc7db8d605a5994dc0b5aa8dab6ba8 Mon Sep 17 00:00:00 2001 From: renaudponcelet <33488309+renaudponcelet@users.noreply.github.com> Date: Tue, 20 Aug 2019 17:28:35 +0200 Subject: [PATCH] Changes the python version Specifies the python version to be able to use channels-redis --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 9e61390..b4f1300 100644 --- a/scripts/install +++ b/scripts/install @@ -126,7 +126,7 @@ ynh_system_user_create --username="$app" --home_dir="$final_path" # PYTHON DEPENDENCIES #================================================= -virtualenv -p python3 "$final_path/code/virtualenv" +virtualenv -p python3.6 "$final_path/code/virtualenv" ( set +o nounset source "${final_path}/code/virtualenv/bin/activate"