-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated readthedocs section for installing BlueChi on Debian
Signed-off-by: Michael Engel <[email protected]>
- Loading branch information
Showing
6 changed files
with
50 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!-- markdownlint-disable-file MD010 MD013 MD014 MD024 MD046 --> | ||
# Installation | ||
|
||
The first step of getting started with BlueChi is the installation of it's components. | ||
|
||
## Fedora or CentOS | ||
|
||
On Fedora and CentOS-Stream systems (with [EPEL](https://docs.fedoraproject.org/en-US/epel/) repository enabled), all | ||
components of BlueChi can be directly installed via: | ||
|
||
```bash | ||
dnf install bluechi-controller \ | ||
bluechi-agent \ | ||
bluechi-ctl \ | ||
bluechi-selinux \ | ||
python3-bluechi | ||
``` | ||
|
||
## Debian-based distributions | ||
|
||
On Debian systems, all components of BlueChi can be installed via: | ||
|
||
```bash | ||
# Add BlueChi PPA | ||
curl -s --compressed "https://raw.githubusercontent.com/eclipse-bluechi/bluechi-ppa/main/deb/KEY.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/bluechi.gpg >/dev/null | ||
curl -s --compressed -o /etc/apt/sources.list.d/bluechi.list "https://raw.githubusercontent.com/eclipse-bluechi/bluechi-ppa/main/deb/bluechi.list" | ||
sudo apt update | ||
|
||
# Install BlueChi packages | ||
sudo apt install bluechi-controller bluechi-agent bluechictl | ||
``` | ||
|
||
The [typed python bindings](../api/client_generation.md#typed-python-client) are not provided as `.deb` package, but | ||
can be installed from [pypi](https://pypi.org/project/bluechi/) via `pip`: | ||
|
||
```bash | ||
pip install bluechi | ||
``` | ||
|
||
## Building from source | ||
|
||
For building and packaging BlueChi from source, please refer to the respective section of the developer README on GitHub: | ||
|
||
- [Building](https://github.com/eclipse-bluechi/bluechi/blob/main/README.developer.md#build) | ||
- [Packaging](https://github.com/eclipse-bluechi/bluechi/blob/main/README.developer.md#packaging) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<!-- markdownlint-disable-file MD041 --> | ||
--8<-- "man/bluechi-agent.selinux.8.md:2" | ||
--8<-- "man/bluechi-agent-selinux.8.md:2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<!-- markdownlint-disable-file MD041 --> | ||
--8<-- "man/bluechi-controller.selinux.8.md:2" | ||
--8<-- "man/bluechi-controller-selinux.8.md:2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters