From: Jeremy Phelps Date: Fri, 4 Aug 2017 20:04:50 +0000 (-0500) Subject: Document installation of lftools X-Git-Tag: v0.7.0~1 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=b7d80c64fe4b4df169d445ffc06087b87ad5e985;p=releng%2Flftools.git Document installation of lftools Change-Id: I762b8fc6cd82b786c81eb9cc3a0711030a0d1ee5 JIRA: RELENG-325 Signed-off-by: Jeremy Phelps --- diff --git a/docs/index.rst b/docs/index.rst index 7713dd6f..6f1061cd 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -16,6 +16,7 @@ Contents: :maxdepth: 2 best-practices + installation commands/index Indices and tables diff --git a/docs/installation.rst b/docs/installation.rst new file mode 100644 index 00000000..1bf68afd --- /dev/null +++ b/docs/installation.rst @@ -0,0 +1,25 @@ +############ +Installation +############ + +.. note:: + + The Linux Foundation strongly recommends that you have a python + virtual environment to work in. https://virtualenv.pypa.io/en/stable/. + Not using a virtualenv can have serious negative side effects! + + +For Install +=========== + +LFTools is available on pypi. To install, after making a virtualenv, +do `pip install lftools` in your shell. + +For Development +=============== + +Often during development you want to run tests and/or +try code out locally as you change it. To do this you +need the installation of LFTools to be your local git repo. +After doing `pip install -r requirements.txt` issue the +command `pip install -e .`