Linux
Toucan can be installed on Linux using one of the following methods:
- Native
.deb
or.rpm
package - recommended - Homebrew
- Compile from source for custom or development builds
Recommended: Install with Native Linux Packages
Toucan provides native packages for popular Linux distributions, starting from version 1.0.0.beta.4
. Download them from the GitHub Releases page.
Debian / Ubuntu (.deb)
wget https://github.com/toucansites/toucan/releases/download/<version>/toucan-linux-amd64-<version>.deb
sudo dpkg -i toucan-linux-amd64-<version>.deb
RHEL / Fedora / openSUSE (.rpm)
wget https://github.com/toucansites/toucan/releases/download/<version>/toucan-linux-x86_64-<version>.rpm
sudo rpm -i toucan-linux-x86_64-<version>.rpm
After installation:
toucan --help
Install with Homebrew (Linuxbrew)
If you have Homebrew installed, you can install Toucan using the official tap:
brew tap toucansites/toucan
brew install toucan
Or install directly without tapping:
brew install toucansites/toucan/toucan
To verify:
toucan --help
Compile from source
For instructions on compiling from source, see Compile from source.