1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
# Installation
## Linux
On Linux the easiest way to install JackTrip is to use the distribution's package manager. However, this may not be the most up-to-date version. For the most recent version, go to the Github releases page below.
=== "Fedora"
```bash
sudo dnf install jacktrip
```
=== "Debian/Ubuntu"
```bash
sudo apt install jacktrip
```
### Latest release
If your distribution doesn't include the latest release in their repository, there are different
alternative options to install from.
=== "Ubuntu"
Ubuntu users can install from a [PPA repository](https://launchpad.net/~umlaeute/+archive/ubuntu/jacktrip/)
maintained by the packager of Ubuntu's official JackTrip packages.
```bash
sudo add-apt-repository ppa:umlaeute/jacktrip
sudo apt update
sudo apt install jacktrip
```
=== "Debian"
Debian stable users can obtain their latest version from the [Debian backports](https://backports.debian.org/) repository.
As an example for Debian Bullseye follow these steps:
```bash
mkdir -p /etc/apt/sources.list.d/
echo "deb http://deb.debian.org/debian bullseye-backports main" | tee /etc/apt/sources.list.d/backports.list
apt-get update
apt-get install -t bullseye-backports jacktrip
```
=== "All"
The [GitHub releases page](https://github.com/jacktrip/jacktrip/releases) also includes a binary
which should run on most Linux distributions (x64). This build is known to not look well under Wayland.
## macOS
macOS installer and application bundle are available on the [GitHub releases page](https://github.com/jacktrip/jacktrip/releases). The installer will install the JackTrip app in `/Applications`, as well as create a link to the `jacktrip` executable in `/usr/local/bin` for use in the command line.
## Windows
Windows installer and executable are available on the [GitHub releases page](https://github.com/jacktrip/jacktrip/releases). The installer will add a shortcut to your Start menu.
# Experimental builds
To keep up with the latest changes, including experimental functionality, you can access builds from the `dev` branch for Linux, macOS and Windows at [https://nightly.link/jacktrip/jacktrip/workflows/jacktrip/dev](https://nightly.link/jacktrip/jacktrip/workflows/jacktrip/dev). Please note that macOS binaries are not signed, so you need to right-click and select "Open" in order to run them.
# Build from Source
To build JackTrip yourself, follow instructions to compile for [Linux](Build/Linux.md), [MacOS](Build/Mac.md) or [Windows](Build/Windows.md).
|