From 444be5bb7f0b350b7abaa97c9bd4cadba3fea6ed Mon Sep 17 00:00:00 2001 From: Aaron Mell Date: Fri, 22 Sep 2017 14:35:25 -0500 Subject: [PATCH] Updated Quikstart (#934) Got some failures doing a clean install on Ubuntu 17.04 Zesty Zapus (Final) from virtualboxes.org --- docs/quickstart/index.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/quickstart/index.rst b/docs/quickstart/index.rst index cce9cdc3..958d652e 100644 --- a/docs/quickstart/index.rst +++ b/docs/quickstart/index.rst @@ -27,10 +27,13 @@ If installing Lemur on a bare Ubuntu OS you will need to grab the following pack .. code-block:: bash $ sudo apt-get update - $ sudo apt-get install nodejs python-pip python-dev python3-dev libpq-dev build-essential libssl-dev libffi-dev nginx git supervisor npm postgresql + $ sudo apt-get install nodejs python-pip python-dev python3-dev libpq-dev build-essential libssl-dev libffi-dev libsas12-dev libldap2-dev nginx git supervisor npm postgresql .. note:: PostgreSQL is only required if your database is going to be on the same host as the webserver. npm is needed if you're installing Lemur from the source (e.g., from git). +.. note:: Installing node from a package manager may creat the nodejs bin at /usr/bin/nodejs instead of /usr/bin/node If that is the case run the following + $ sudo ln -s /user/bin/nodejs /usr/bin/node + Now, install Python ``virtualenv`` package: .. code-block:: bash