blob: 6abba3f037521ff8f27c9ccb9cd92e4034c1e9a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
############
Installation
############
``python-gitlab`` is compatible with python 2 and 3.
Use :command:`pip` to install the latest stable version of ``python-gitlab``:
.. code-block:: console
$ pip install --upgrade python-gitlab
The current development version is available on `github
<https://github.com/gpocentek/python-gitlab>`__. Use :command:`git` and
:command:`pip` to install it:
.. code-block:: console
$ git clone https://github.com/gpocentek/python-gitlab
$ cd python-gitlab
$ python setup.py install
|