Change documentation to install from pypi

Change-Id: I46fe46d0af14563b2e87492c2abe1b39ec246714
This commit is contained in:
Terry Howe 2015-12-08 15:43:06 -07:00
parent c3f9d6c665
commit aa41127ef7
2 changed files with 16 additions and 2 deletions

View File

@ -9,7 +9,7 @@ similarly configured jobs is easy.
To install::
$ sudo python setup.py install
$ pip install --user jenkins-job-builder
Online documentation:
@ -29,6 +29,13 @@ Cloning::
git clone https://git.openstack.org/openstack-infra/jenkins-job-builder
A virtual environment is recommended for development. For example, Jenkins
Job Builder may be installed from the top level directory::
$ virtualenv .venv
$ source .venv/bin/activate
$ pip install -r test-requirements.txt -e .
Patches are submitted via Gerrit at:
* https://review.openstack.org/

View File

@ -3,7 +3,14 @@ Installation
To install Jenkins Job Builder from source, run::
sudo python setup.py install
pip install --user jenkins-job-builder
A virtual environment is recommended for development. For example, Jenkins
Job Builder may be installed from the top level directory::
$ virtualenv .venv
$ source .venv/bin/activate
$ pip install -r test-requirements.txt -e .
Alternatively, the current release can be installed from pypi::