35 lines
667 B
ReStructuredText
35 lines
667 B
ReStructuredText
Installation
|
|
============
|
|
|
|
|
|
.. todo::
|
|
|
|
better install docs, especially on how to use different fork, etc.
|
|
|
|
Install with pip
|
|
::::::::::::::::
|
|
|
|
.. code-block:: shell-session
|
|
|
|
$ pip install bonobo
|
|
|
|
Install from source
|
|
:::::::::::::::::::
|
|
|
|
.. code-block:: shell-session
|
|
|
|
$ pip install git+https://github.com/python-bonobo/bonobo.git@master#egg=bonobo
|
|
|
|
Editable install
|
|
::::::::::::::::
|
|
|
|
If you plan on making patches to Bonobo, you should install it as an "editable" package.
|
|
|
|
|
|
.. code-block:: shell-session
|
|
|
|
$ pip install --editable git+https://github.com/python-bonobo/bonobo.git@master#egg=bonobo
|
|
|
|
Note: `-e` is the shorthand version of `--editable`.
|
|
|