1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
Breezy install instructions
***************************
Dependencies
------------
Breezy requires Python 3.10 or newer as well as the rust compiler.
It also requires the `setuptools`, `setuptools_rust`, ``setuptools_gettext``,
`configobj`, `fastbencode` and `patiencediff` Python modules to be installed.
Optional dependencies
~~~~~~~~~~~~~~~~~~~~~
If you wish to access branches over sftp, you will need paramiko and
pycrypto:
http://www.lag.net/paramiko/
To PGP sign commits and verify PGP signatures on commits, install
python-gpgme.
For Git support, install Dulwich:
https://www.dulwich.io/
For fastimport support, install python-fastimport:
https://github.com/jelmer/python-fastimport
brz can optionally use compiled versions of some parts of the code
for increased speed. When installing brz you need the ability to
build C extensions. Some GNU/Linux distributions package the necessary
headers separately from the main Python package. This package is
probably named something like python-dev or python-devel. FreeBSD,
Windows, source-based GNU/Linux distributions, and possibly other operating
systems, have the required files installed by default.
If you are installing brz from a brz branch rather than a release tarball,
then you should also have the Cython package installed. This is not necessary
for release tarballs as they already contain the C files that Cython is needed
to create.
http://www.cython.org/
Installation
------------
To install brz as a user, run
pip install --user .
To install system-wide, run (as root)
pip install .
For more information on installation, see
<http://wiki.breezy-vcs.org/InstallationFaq> for the Bazaar installation FAQ
(that also applies to Breezy)
or write to bazaar@lists.canonical.com mentioning you use Breezy, or ask a
question at <https://answers.launchpad.net/brz/>.
|