diff --git a/doc/install.rst b/doc/install.rst index 367335e7584f8768a5fd888d0670369de41ec0c7..a97b97dc5bda6222efe57c29a06254dae9cff6ba 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -80,13 +80,19 @@ Installing build dependencies Installing from source requires you to have installed the scikit-learn runtime dependencies, Python development headers and a working C/C++ compiler. -Under Debian-based operating systems, which include Ubuntu, -you can install all these requirements by issuing:: +Under Debian-based operating systems, which include Ubuntu, if you have +Python 2 you can install all these requirements by issuing:: sudo apt-get install build-essential python-dev python-setuptools \ python-numpy python-scipy \ libatlas-dev libatlas3gf-base +If you have Python 3:: + + sudo apt-get install build-essential python3-dev python3-setuptools \ + python3-numpy python3-scipy \ + libatlas-dev libatlas3gf-base + On recent Debian and Ubuntu (e.g. Ubuntu 13.04 or later) make sure that ATLAS is used to provide the implementation of the BLAS and LAPACK linear algebra routines::