diff options
author | Chandan Singh <csingh43@bloomberg.net> | 2018-08-12 00:22:46 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2018-08-12 10:57:15 +0000 |
commit | 3e5aa8ff838f5088095ab1bcdbf6fd5a68ba0a0c (patch) | |
tree | ea6f750eee75425afe10195c932f2e0ab07a6ff7 | |
parent | c1fdebb3137891305bea7db8b4f1ad9f0b1e2043 (diff) | |
download | buildstream-3e5aa8ff838f5088095ab1bcdbf6fd5a68ba0a0c.tar.gz |
doc: Fix install instructions for Fedora
`python3-arpy` package is not available on Fedora so it has to be
installed using `pip`. Update instructions accordingly.
For reference, here is a pipeline that failed when trying to install
`arpy` using current instructions:
https://gitlab.com/BuildStream/buildstream-docker-images/-/jobs/88553245.
-rw-r--r-- | doc/source/install_linux_distro.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/source/install_linux_distro.rst b/doc/source/install_linux_distro.rst index 04f29d1ba..0d21bfd46 100644 --- a/doc/source/install_linux_distro.rst +++ b/doc/source/install_linux_distro.rst @@ -122,7 +122,8 @@ requirements you need:: For the default plugins:: dnf install -y \ - bzr git lzip patch ostree python3-arpy python3-gobject + bzr git lzip patch ostree python3-gobject + pip3 install --user arpy Ubuntu |