##// END OF EJS Templates
docs: clean up installation of optional dependencies...
Mads Kiilerich -
r7748:3a3d96db default
parent child Browse files
Show More
@@ -35,7 +35,7 b' To get started with Kallithea developmen'
35 virtualenv ../kallithea-venv
35 virtualenv ../kallithea-venv
36 source ../kallithea-venv/bin/activate
36 source ../kallithea-venv/bin/activate
37 pip install --upgrade pip setuptools
37 pip install --upgrade pip setuptools
38 pip install --upgrade -e . -r dev_requirements.txt
38 pip install --upgrade -e . -r dev_requirements.txt python-ldap python-pam
39 kallithea-cli config-create my.ini
39 kallithea-cli config-create my.ini
40 kallithea-cli db-create -c my.ini --user=user --email=user@example.com --password=password --repos=/tmp
40 kallithea-cli db-create -c my.ini --user=user --email=user@example.com --password=password --repos=/tmp
41 kallithea-cli front-end-build
41 kallithea-cli front-end-build
@@ -88,15 +88,6 b' An additional benefit of virtualenv_ is '
88 will "activate" a shell that terminates immediately. It is also perfectly
88 will "activate" a shell that terminates immediately. It is also perfectly
89 acceptable (and desirable) to create a virtualenv as a normal user.
89 acceptable (and desirable) to create a virtualenv as a normal user.
90
90
91 .. note:: Some dependencies are optional. If you need them, install them in
92 the virtualenv too::
93
94 pip install --upgrade psycopg2
95 pip install --upgrade python-ldap
96
97 This might require installation of development packages using your
98 distribution's package manager.
99
100 - Make a folder for Kallithea data files, and configuration somewhere on the
91 - Make a folder for Kallithea data files, and configuration somewhere on the
101 filesystem. For example::
92 filesystem. For example::
102
93
@@ -106,8 +97,16 b' An additional benefit of virtualenv_ is '
106
97
107 pip install --upgrade kallithea
98 pip install --upgrade kallithea
108
99
100 .. note:: Some dependencies are optional. If you need them, install them in
101 the virtualenv too::
102
103 pip install --upgrade kallithea python-ldap python-pam psycopg2
104
105 This might require installation of development packages using your
106 distribution's package manager.
107
109 Alternatively, download a .tar.gz from http://pypi.python.org/pypi/Kallithea,
108 Alternatively, download a .tar.gz from http://pypi.python.org/pypi/Kallithea,
110 extract it and run::
109 extract it and install from source by running::
111
110
112 pip install --upgrade .
111 pip install --upgrade .
113
112
General Comments 0
You need to be logged in to leave comments. Login now