From 64f603375298d45f5a74d172fcd9a3763af5e587 Mon Sep 17 00:00:00 2001
From: Ben Adida <ben@adida.net>
Date: Sat, 23 Jan 2021 17:52:02 +0000
Subject: [PATCH] updated install instructions for python3

---
 INSTALL.md | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/INSTALL.md b/INSTALL.md
index 3d604e7..1bf40ba 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -8,11 +8,16 @@ http://www.virtualenv.org/en/latest/
 * cd into the helios-server directory
 
 * create a virtualenv
-* make sure you use Python2.7 and **not** Python3+
-* The above can be done by typing something similar to
+* make sure you use Python3 
 
 ```
-virtualenv --python=/usr/bin/python2.7 $(pwd)/venv
+virtualenv --python=/usr/bin/python3 $(pwd)/venv
+```
+
+* you'll also need Postgres and Python dev libraries. For example on Ubuntu:
+
+```
+sudo apt install libpq-dev python3-dev
 ```
 
 * activate virtual environment
-- 
GitLab