Skip to content
Snippets Groups Projects
Select Git revision
  • 968f5022042260813104e0139bcd321063d565eb
  • master default protected
  • chrome-manifest-v3
  • feature/migrate-cordova-13
  • feat/improve-network-scan
  • feat/force-migration-check
  • develop
  • feature/encrypted_comment
  • feature/android_api_19
  • gitlab_migration_1
  • rml8
  • v1.7.15-rc1
  • v1.7.14
  • v1.7.13
  • v1.7.12
  • v1.7.11
  • v1.7.10
  • v1.7.9
  • v1.7.8
  • v1.7.7
  • v1.7.6
  • v1.7.5
  • v1.7.4
  • v1.7.3
  • v1.7.2
  • v1.7.1
  • v1.7.0
  • v1.7.0-rc2
  • v1.7.0-rc1
  • v1.6.12
  • v1.6.11
31 results

network-controllers.js

Blame
  • 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.

    Packaging status

    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
    ```

    Install pipx

    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.

    Install pip

    === "Debian"