Select Git revision
network-controllers.js
install.md 3.00 KiB
hide:
- navigation
Install Silkaj
Distribution
Installing Silkaj from the package manager of your favorite distribution might not be available or might not come with latest Silkaj version.
In order to get latest version install Silkaj with pipx
or pip
from PyPI which you can find in next sections.
Unix
On a Unix system, run in your shell following commands:
Install libsodium
=== "Debian"
```
sudo apt install libsodium23
```
=== "Fedora"
```
sudo dnf install libsodium-devel
```
=== "macOS"
```
brew install libsodium
```
pipx
Install Check pipx
documentation for an extended installation tutorial.
=== "Debian"
```
sudo apt install pipx python3-dev
```
=== "Fedora"
```
sudo dnf install pipx python3-devel
```
=== "macOS"
```
brew install python3 pipx
```
Install with pipx
pipx tool is recommended for Python executables. It isolates libraries into separated virtual environments.
Ensure path
Takes care to add Pipx executables in the PATH
of your shell:
pipx ensurepath
Install
pipx install silkaj
Upgrade
pipx upgrade silkaj
Uninstall
pipx uninstall silkaj
Check Silkaj is working
silkaj
Install with pip
pipx
installation is recommended, but you can proceed with pip
if you know what you are doing.
pip
Install === "Debian"