blob: 8735a5b5a0b7ecb57b3af235be11b4f96861312c [file] [log] [blame]
.. _installing:
Installing BuildStream
======================
BuildStream requires the following base system requirements:
* python3 >= 3.4
* ruamel.yaml python library
* PyGObject introspection bindings
* OSTree >= v2017.8 with introspection data
If your system cannot provide the base system requirements for BuildStream,
then we have some instructions which can help you get started
:ref:`using BuildStream with Docker <docker>`.
Installing from source (recommended)
------------------------------------
Until BuildStream is available in your distro, you will need to install
it yourself from the `git repository <https://gitlab.com/BuildStream/buildstream.git>`_
using python's ``pip`` package manager.
For the purpose of installing BuildStream while there are no distro packages,
you will additionally need:
* pip for python3 (only required for setup)
* Python 3 development libraries and headers
* git (to checkout buildstream)
Installing dependencies
~~~~~~~~~~~~~~~~~~~~~~~
Arch Linux
++++++++++
Install the dependencies with::
sudo pacman -S fuse2 python python-pip python-gobject git \
ostree bubblewrap python-ruamel-yaml
Debian
++++++
Stretch
^^^^^^^
With stretch, you first need to ensure that you have the backports repository
setup as described `here <https://backports.debian.org/Instructions/>`_
By adding the following line to your sources.list::
deb http://ftp.debian.org/debian stretch-backports main
And then running::
sudo apt-get update
At this point you should be able to get the system requirements with::
sudo apt-get install \
python3-dev python3-pip git python3-gi \
python3-ruamel.yaml bubblewrap fuse libfuse2
sudo apt-get install -t stretch-backports \
gir1.2-ostree-1.0 ostree
Buster or Sid
^^^^^^^^^^^^^
For debian unstable or testing, only the following line should be enough
to get the base system requirements installed::
sudo apt-get install \
python3-dev python3-pip git \
python3-gi gir1.2-ostree-1.0 ostree \
bubblewrap python3-ruamel.yaml fuse libfuse2
Fedora
++++++
For recent fedora systems, the following line should get you the system
requirements you need::
dnf install -y bubblewrap fuse fuse-libs git python3-gobject \
python3-psutil ostree python3-ruamel-yaml
Installing
~~~~~~~~~~
Once you have the base system dependencies, you can clone the BuildStream
git repository and install it as a regular user::
git clone https://gitlab.com/BuildStream/buildstream.git
cd buildstream
pip3 install --user -e .
This will install buildstream's pure python dependencies into
your user's homedir in ``~/.local`` and will run BuildStream directly
from the git checkout directory.
Keep following the instructions below to ensure that the ``bst``
command is in your ``PATH`` and to enable bash completions for it.
.. note::
We recommend the ``-e`` option because you can upgrade your
installation by simply updating the checked out git repository.
If you want a full installation that is not linked to your
git checkout, just omit the ``-e`` option from the above commands.
Adjust PATH
~~~~~~~~~~~
Since BuildStream is now installed under your local user's install directories,
you need to ensure that ``PATH`` is adjusted.
A regular way to do this is to add the following line to the end of your ``~/.bashrc``::
export PATH="${PATH}:${HOME}/.local/bin"
.. note::
You will have to restart your terminal in order for these changes to take effect.
Bash Completions
~~~~~~~~~~~~~~~~
Bash completions are supported by sourcing the ``buildstream/data/bst``
script found in the BuildStream repository. On many systems this script
can be installed into a completions directory but when installing BuildStream
without a package manager this is not an option.
To enable completions for an installation of BuildStream you
installed yourself from git, just append the script verbatim
to your ``~/.bash_completion``:
.. literalinclude:: ../../buildstream/data/bst
:language: yaml
Upgrading BuildStream
~~~~~~~~~~~~~~~~~~~~~
Assuming you have followed the default instructions above, all
you need to do to upgrade BuildStream is to update your local git
checkout::
cd /path/to/buildstream
git pull --rebase
If you did not specify the ``-e`` option at install time, you will
need to cleanly reinstall BuildStream::
pip3 uninstall buildstream
cd /path/to/buildstream
git pull --rebase
pip3 install --user .
Installing from distro packages
-------------------------------
Arch Linux
~~~~~~~~~~
Install `buildstream <https://aur.archlinux.org/packages/buildstream>`_
from `AUR <https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_packages>`_.
Alternatively, use
`buildstream-git <https://aur.archlinux.org/packages/buildstream-git>`_
for the lastest version of the development branch.