Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
14e4c3c4
Commit
14e4c3c4
authored
Nov 30, 2015
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve install instructions for Ubuntu/Debian
Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
e26f97f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
7 deletions
+21
-7
docs/admin/install.rst
docs/admin/install.rst
+21
-7
No files found.
docs/admin/install.rst
View file @
14e4c3c4
...
...
@@ -30,6 +30,8 @@ dateutil
http://labix.org/python-dateutil
django_compressor
https://github.com/django-compressor/django-compressor
django-crispy-forms (>=1.4.0)
http://django-crispy-forms.readthedocs.org/
libravatar (optional for federated avatar support)
https://pypi.python.org/pypi/pyLibravatar
pyuca (>= 1.1) (optional for proper sorting of strings)
...
...
@@ -44,31 +46,43 @@ hub (optional for sending pull requests to GitHub)
Requirements on Debian or Ubuntu
++++++++++++++++++++++++++++++++
On
Debian or Ubuntu, most of requirements are already packaged, to install them
you can use apt-get:
On
recent Debian or Ubuntu, most of requirements are already packaged, to
install them
you can use apt-get:
.. code-block:: sh
apt-get install python-django translate-toolkit \
python-whoosh python-pil python-libravatar \
python-babel Git mercurial python-social-auth \
python-django-compressor
python-django-compressor
python-django-crispy-forms
# Optional for database backend
apt-get install python-mysqldb # For MySQL
apt-get install python-psycopg2 # For PostgreSQL
For Debian 7.0 (Wheezy) or older or older Ubuntu version, you need to install
several Python modules manually using pip as versions shipped in distribution
are too old or non existing:
On older versions, some required dependencies are missing or outdated, so you
need to install several Python modules manually using pip:
.. code-block:: sh
# Dependencies for python-social-auth
apt-get install python-requests-oauthlib python-six python-openid
pip install python-social-auth Django Whoosh django_compressor
# In case python-social-auth package is missing
pip install python-social-auth
# In case your distribution has python-django older than 1.7
pip install Django
# In case python-django-crispy-forms package is missing
pip install django-crispy-forms
# In case python-whoosh package is misssing or older than 2.5
pip install Whoosh
# In case your python-django-compressor package is missing
pip install django_compressor
For proper sorting of a unicode strings, it is recommended to install pyuca:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment