##// END OF EJS Templates
docs: recommend --upgrade for all pip installations in a virtualenv...
Thomas De Schampheleire -
r6703:29e9cb56 default
parent child Browse files
Show More
@@ -35,8 +35,8 b' To get started with Kallithea developmen'
35 35 virtualenv ../kallithea-venv
36 36 source ../kallithea-venv/bin/activate
37 37 pip install --upgrade pip setuptools
38 pip install -e .
39 pip install -r dev_requirements.txt
38 pip install --upgrade -e .
39 pip install --upgrade -r dev_requirements.txt
40 40 gearbox make-config my.ini
41 41 gearbox setup-db -c my.ini --user=user --email=user@example.com --password=password --repos=/tmp
42 42 gearbox serve -c my.ini --reload &
@@ -56,7 +56,7 b' repository, follow the instructions belo'
56 56 virtualenv ../kallithea-venv
57 57 . ../kallithea-venv/bin/activate
58 58 pip install --upgrade pip setuptools
59 pip install -e .
59 pip install --upgrade -e .
60 60 python2 setup.py compile_catalog # for translation of the UI
61 61
62 62 You can now proceed to :ref:`setup`.
@@ -91,8 +91,8 b' An additional benefit of virtualenv_ is '
91 91 .. note:: Some dependencies are optional. If you need them, install them in
92 92 the virtualenv too::
93 93
94 pip install psycopg2
95 pip install python-ldap
94 pip install --upgrade psycopg2
95 pip install --upgrade python-ldap
96 96
97 97 This might require installation of development packages using your
98 98 distribution's package manager.
@@ -104,12 +104,12 b' An additional benefit of virtualenv_ is '
104 104
105 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 109 Alternatively, download a .tar.gz from http://pypi.python.org/pypi/Kallithea,
110 110 extract it and run::
111 111
112 pip install .
112 pip install --upgrade .
113 113
114 114 - This will install Kallithea together with all other required
115 115 Python libraries into the activated virtualenv.
@@ -85,7 +85,7 b' If you originally installed from version'
85 85
86 86 cd my-kallithea-clone
87 87 hg pull -u
88 pip install -e .
88 pip install --upgrade -e .
89 89
90 90
91 91 5. Upgrade your configuration
General Comments 0
You need to be logged in to leave comments. Login now