aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-04-08 08:13:57 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-04-08 08:13:57 +0200
commit374dcbed4aa65b0f1c26cc28a572893dff28d5af (patch)
treec77749a08f91b5f4898e5f9c61350d9a7e7ef672 /docs
parentUpdated documentation. (diff)
downloadnewspipe-374dcbed4aa65b0f1c26cc28a572893dff28d5af.tar.gz
newspipe-374dcbed4aa65b0f1c26cc28a572893dff28d5af.tar.bz2
newspipe-374dcbed4aa65b0f1c26cc28a572893dff28d5af.zip
Updated installation script.
Diffstat (limited to 'docs')
-rw-r--r--docs/index.rst13
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 7b972e6f..b8210874 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -66,9 +66,14 @@ Script of installation
.. code-block:: bash
- sudo aptitude install python3-feedparser python3-bs4
- sudo aptitude install python3-mako
- sudo aptitude install python3-pip
+ # Installation of Python
+
+ # Installation of Distribute and PIP
+
+ # Core requirements for pyAggr3g470r
+ sudo pip-3.3 install feedparser
+ sudo pip-3.3 install beautifulsoup4
+ sudo pip-3.3 install mako
sudo pip-3.3 install pymongo
# CherryPy, Minimalist Python Web Framework:
wget wget https://bitbucket.org/cherrypy/cherrypy/get/3.2.4.tar.gz
@@ -85,7 +90,7 @@ Script of installation
cd ..
sudo rm -Rf guess_language/
# PyEnchant, for the language detection
- sudo pip install pyenchant
+ sudo pip-3.3 install pyenchant
# Pillow, for the generation of QR Code
sudo pip-3.3 install pillow
# Finally, download pyAggr3g470r
bgstack15