From ddd1b6f32c76a32d32cd5c3b885ce6869f9b712b Mon Sep 17 00:00:00 2001 From: MikeG451 Date: Thu, 23 Feb 2017 14:53:35 +0000 Subject: [PATCH] Developer guide should not include Python 3.4 The developer guide currently includes instructions for installing Python 3.4, but it is not a supported python version and should be removed from the developer guide. Change-Id: I1e0550f1dfd264c5ab09c45e4b9b2a1e570dac32 Closes-bug: #1667312 --- doc/source/dev/dev-quickstart.rst | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst index 1b1acd8fca..d687069c9c 100644 --- a/doc/source/dev/dev-quickstart.rst +++ b/doc/source/dev/dev-quickstart.rst @@ -64,37 +64,6 @@ well. ``_. -(Optional) Installing Py34 requirements ---------------------------------------- - -If you need Python 3.4, follow the instructions above to install prerequisites -and *additionally* install the following packages: - -- On Ubuntu 14.x/Debian:: - - sudo apt-get install python3-dev - -- On Ubuntu 16.04:: - - wget https://www.python.org/ftp/python/3.4.4/Python-3.4.4.tgz - sudo tar xzf Python-3.4.4.tgz - cd Python-3.4.4 - sudo ./configure - sudo make altinstall - - # This will install Python 3.4 without replacing 3.5. To check if 3.4 was installed properly - run this command: - - python3.4 -V - -- On Fedora 21/RHEL7/CentOS7:: - - sudo yum install python3-devel - -- On Fedora 22 and higher:: - - sudo dnf install python3-devel - (Optional) Installing Py35 requirements ---------------------------------------