From 4432e19ee35b38480d88b7eac660b26045b60ddf Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 17 Jul 2015 08:35:53 -0400 Subject: [PATCH] Clean up getting started docs setuptools-git is not required at all. Additionally, there were things mentioned in the global pip install that were also mentioned in the distro package installed. One should NEVER install the same library from both sources, as things get very confused. Change-Id: Id336062c7063fd750f369f363600e0b7649ffe7f --- doc/source/dev/dev-quickstart.rst | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst index 5eff0bce23..57a63614b1 100644 --- a/doc/source/dev/dev-quickstart.rst +++ b/doc/source/dev/dev-quickstart.rst @@ -21,7 +21,7 @@ Install OS-specific prerequisites:: sudo apt-get update sudo apt-get install python-dev libssl-dev python-pip libmysqlclient-dev \ libxml2-dev libxslt-dev libpq-dev git git-review \ - libffi-dev gettext python-tox + libffi-dev gettext # Fedora/RHEL: sudo yum install python-devel openssl-devel python-pip mysql-devel \ @@ -31,14 +31,12 @@ Install OS-specific prerequisites:: # openSUSE/SLE 12: sudo zypper install git git-review libffi-devel libmysqlclient-devel \ libopenssl-devel libxml2-devel libxslt-devel \ - postgresql-devel python-devel python-flake8 \ - python-pip python-setuptools-git \ - python-testrepository python-tox python-virtualenv \ - gettext-runtime + postgresql-devel python-devel \ + python-pip gettext-runtime Install common prerequisites:: - sudo pip install virtualenv setuptools-git flake8 tox testrepository + sudo pip install virtualenv flake8 tox testrepository Note: If using RHEL and yum reports "No package python-pip available" and "No package git-review available", use the EPEL software repository. Instructions