Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ“ added Arch Linux and Nix installation instructions to README #94

Merged
merged 1 commit into from
Apr 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,28 @@ To install NiaAML on Alpine Linux, please enable Community repository and use:
$ apk add py3-niaaml
```

### Arch Linux

To install NiaAML on Arch Linux, use:

```sh
$ pacman -S python-niaaml
```

### Nix

To install NiaAML with the [Nix package manager](https://search.nixos.org/packages?channel=23.11&show=python311Packages.niaaml), use:

```sh
$ nix-env -i python311Packages.niaaml
```

To enter a shell with the package already installed, use:

```sh
$ nix-shell -p python311Packages.niaaml
```

## πŸ’» Graphical User Interface

There is a simple Graphical User Interface for the NiaAML package available [here](https://github.com/lukapecnik/NiaAML-GUI).
Expand Down
Loading