From d93e6edb1dc2cf96f1ea2d5f074e8999c2ae6475 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 3 Apr 2019 17:01:49 +0200 Subject: [PATCH] use python3 to install riot webserver --- riot/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riot/install.sh b/riot/install.sh index 59f945d51b..e8eef9427f 100755 --- a/riot/install.sh +++ b/riot/install.sh @@ -12,7 +12,7 @@ cd $BASE_DIR # Install ComplexHttpServer (a drop in replacement for Python's SimpleHttpServer # but with support for multiple threads) into a virtualenv. ( - virtualenv env + virtualenv -p python3 env source env/bin/activate # Having been bitten by pip SSL fail too many times, I don't trust the existing pip