Browse code

Suggest users install dependencies by using requirements.txt, not manually

John Feminella authored on 2013/11/24 05:53:50
Showing 1 changed files
... ...
@@ -41,11 +41,12 @@ its dependencies. There are two main ways to install this tool:
41 41
 
42 42
 ###Native Installation
43 43
 
44
-* Install sphinx: `pip install sphinx`
45
-    * Mac OS X: `[sudo] pip-2.7 install sphinx`
46
-* Install sphinx httpdomain contrib package: `pip install sphinxcontrib-httpdomain`
47
-    * Mac OS X: `[sudo] pip-2.7 install sphinxcontrib-httpdomain`
48
-* If pip is not available you can probably install it using your favorite package manager as **python-pip**
44
+Install dependencies from `requirements.txt` file in your `docker/docs`
45
+directory:
46
+
47
+* Linux: `pip install -r docs/requirements.txt`
48
+
49
+* Mac OS X: `[sudo] pip-2.7 -r docs/requirements.txt`
49 50
 
50 51
 ###Alternative Installation: Docker Container
51 52