From 111338007d202ac891aa88f860d6163ac4aa4a34 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 25 Feb 2015 18:23:55 -0800 Subject: [PATCH] Add linux dependency to troubleshooting page --- source/getting-started/troubleshooting.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/getting-started/troubleshooting.markdown b/source/getting-started/troubleshooting.markdown index f48cc0de35e..1ba127783b0 100644 --- a/source/getting-started/troubleshooting.markdown +++ b/source/getting-started/troubleshooting.markdown @@ -16,3 +16,5 @@ Check if Python 3.4 is installed by running `python3 --version`. If it is not in Pip should come bundled with the latest Python 3 but is ommitted by some distributions. If you are unable to run `python3 -m pip --version` you can install pip by [downloading the installer](https://bootstrap.pypa.io/get-pip.py) and run it with Python 3: `python3 get-pip.py`. Check if Git is installed by running `git --version`. If you are unable to run this command you can install it by following [these instructions](http://git-scm.com/downloads). + +When you are on Linux, it can happen that the requirements fail to install. If this is the case you can fix this by installing the Python 3 development package. For Debian/Ubuntu this can be done by running `apt-get install python3-dev`.