From fa8ab12ebd98887fc2b38954a8497d4e77e7c485 Mon Sep 17 00:00:00 2001 From: Samuel Villamonte Date: Fri, 30 Jan 2015 20:29:31 -0500 Subject: [PATCH] Simplify pip install (fixes #2958) --- doc/README | 20 ++++++++------------ doc/doc-requirements.txt | 5 +++++ 2 files changed, 13 insertions(+), 12 deletions(-) create mode 100644 doc/doc-requirements.txt diff --git a/doc/README b/doc/README index 40cd2b3fc..215c229f1 100644 --- a/doc/README +++ b/doc/README @@ -13,19 +13,15 @@ You need to install : * Python Sphinx - Where apt-get is available : apt-get install python-sphinx - - On Windows : + - On Windows (or from inside your virtualenv) : Get pip (https://pypi.python.org/pypi/pip). You'll use it to install the dependencies. - To install pip, do python setup.py install in the pip directory. - Now do : - pip install sphinx - pip install blockdiag - pip install sphinxcontrib-blockdiag - pip install seqdiag - pip install sphinxcontrib-seqdiag - pip install actdiag - pip install sphinxcontrib-actdiag - pip install nwdiag - pip install sphinxcontrib-nwdiag + To install pip, run python setup.py install in the pip directory. + Now run : + pip install sphinxcontrib-blockdiag sphinxcontrib-seqdiag + pip install sphinxcontrib-actdiag sphinxcontrib-nwdiag + + Or just use the provided doc-requirements.txt : + pip install -r doc-requirements.txt * Latest kivy diff --git a/doc/doc-requirements.txt b/doc/doc-requirements.txt new file mode 100644 index 000000000..b57f26ed0 --- /dev/null +++ b/doc/doc-requirements.txt @@ -0,0 +1,5 @@ +# Frozen Sphinx requirements for easier pip installation +sphinxcontrib-actdiag +sphinxcontrib-blockdiag +sphinxcontrib-nwdiag +sphinxcontrib-seqdiag