From 5cf3259dbfa36bf6ab0f94c4429637c0ec73d8d3 Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Thu, 7 Jan 2016 16:12:34 +0000 Subject: [PATCH] Fix python3/2 issues --- scripts/aws_install_dependencies.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/aws_install_dependencies.sh b/scripts/aws_install_dependencies.sh index 335f29ebf..849c8578a 100755 --- a/scripts/aws_install_dependencies.sh +++ b/scripts/aws_install_dependencies.sh @@ -2,7 +2,6 @@ echo "Install dependencies" cd /home/ubuntu/notifications-admin; -gem install sass; export FLASK_CONFIG=/home/ubuntu/config.cfg -python app.py db upgrade -pip install -r /home/ubuntu/notifications-admin/requirements.txt +python3 app.py db upgrade +pip3 install -r /home/ubuntu/notifications-admin/requirements.txt