From d819f156400aaa643beb18107ecb360650816d18 Mon Sep 17 00:00:00 2001 From: inso <insomniak.fr@gmail.com> Date: Thu, 1 Jun 2017 12:05:57 +0200 Subject: [PATCH] Add missing libraries --- doc/install_for_developers.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/install_for_developers.md b/doc/install_for_developers.md index 98b64645..e740ae3b 100644 --- a/doc/install_for_developers.md +++ b/doc/install_for_developers.md @@ -95,6 +95,15 @@ If you are running El Capitan (MacOS 10.10), you'll need to run `xcode-select -- #### Pyenv environment ##### Build python 3.5.3 + +Building python 3.5.3 requires libraries of `openssl` and `sqlite3`. On Ubuntu, install it using the following commands : + +``` +apt-get update +apt-get install libssl-dev +apt-get install libsqlite3-dev +``` + Restart your shell then prepare your virtualenv: On GNU/Linux: `PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.5.3` -- GitLab