Show More
@@ -35,8 +35,8 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 -e . |
|
38 | pip install --upgrade -e . | |
39 | pip install -r dev_requirements.txt |
|
39 | pip install --upgrade -r dev_requirements.txt | |
40 | gearbox make-config my.ini |
|
40 | gearbox make-config my.ini | |
41 | gearbox setup-db -c my.ini --user=user --email=user@example.com --password=password --repos=/tmp |
|
41 | gearbox setup-db -c my.ini --user=user --email=user@example.com --password=password --repos=/tmp | |
42 | gearbox serve -c my.ini --reload & |
|
42 | gearbox serve -c my.ini --reload & |
@@ -56,7 +56,7 b' repository, follow the instructions belo' | |||||
56 | virtualenv ../kallithea-venv |
|
56 | virtualenv ../kallithea-venv | |
57 | . ../kallithea-venv/bin/activate |
|
57 | . ../kallithea-venv/bin/activate | |
58 | pip install --upgrade pip setuptools |
|
58 | pip install --upgrade pip setuptools | |
59 | pip install -e . |
|
59 | pip install --upgrade -e . | |
60 | python2 setup.py compile_catalog # for translation of the UI |
|
60 | python2 setup.py compile_catalog # for translation of the UI | |
61 |
|
61 | |||
62 | You can now proceed to :ref:`setup`. |
|
62 | You can now proceed to :ref:`setup`. | |
@@ -91,8 +91,8 b' An additional benefit of virtualenv_ is ' | |||||
91 | .. note:: Some dependencies are optional. If you need them, install them in |
|
91 | .. note:: Some dependencies are optional. If you need them, install them in | |
92 | the virtualenv too:: |
|
92 | the virtualenv too:: | |
93 |
|
93 | |||
94 | pip install psycopg2 |
|
94 | pip install --upgrade psycopg2 | |
95 | pip install python-ldap |
|
95 | pip install --upgrade python-ldap | |
96 |
|
96 | |||
97 | This might require installation of development packages using your |
|
97 | This might require installation of development packages using your | |
98 | distribution's package manager. |
|
98 | distribution's package manager. | |
@@ -104,12 +104,12 b' An additional benefit of virtualenv_ is ' | |||||
104 |
|
104 | |||
105 | - Go into the created directory and run this command to install Kallithea:: |
|
105 | - Go into the created directory and run this command to install Kallithea:: | |
106 |
|
106 | |||
107 | pip install kallithea |
|
107 | pip install --upgrade kallithea | |
108 |
|
108 | |||
109 | Alternatively, download a .tar.gz from http://pypi.python.org/pypi/Kallithea, |
|
109 | Alternatively, download a .tar.gz from http://pypi.python.org/pypi/Kallithea, | |
110 | extract it and run:: |
|
110 | extract it and run:: | |
111 |
|
111 | |||
112 | pip install . |
|
112 | pip install --upgrade . | |
113 |
|
113 | |||
114 | - This will install Kallithea together with all other required |
|
114 | - This will install Kallithea together with all other required | |
115 | Python libraries into the activated virtualenv. |
|
115 | Python libraries into the activated virtualenv. |
General Comments 0
You need to be logged in to leave comments.
Login now