Linux
Automatic installation
There are user-made tools to install the Tidalcycles stack. Be sure to check out the following solutions:
- Ansible method: Ubuntu / debian / Mint (/ most debian-based distros)
- full featured solution including SuperCollider, Haskell, Tidal, SuperDirt, code editor, and package dependencies
- has customization options, including adding additional sample sources and bus channel settings
- for more information, see the Tidal Club thread
- Yay : installation on Arch / Manjaro.
Manual installation
There are several required components for a complete Tidal Cycles system
- Git
- Haskell
- SuperCollider
- SuperDirt
- a Text Editor (eg Pulsar, VS Code, vim/neovim, emacs, and more)
Most modern distros will make all or most of these available for convenient install via their package managers.
The following instructions provide commands specific to different distro families. They are labelled as:
- debian - the debian family of distros includes debian, *buntu, Mint, pop!_OS and more
- Arch - the Arch family of distros includes Arch Linux, Manjaro and more
- all - this command should be run by everyone, regardless of distro
Choose the command that matches the distro you are running.
Configure User
- Add your user as a member of the
audiogroup
all
sudo usermod -a -G audio $USER
- Logout and log back in for it to take effect. You can check it worked with
all
groups | grep audio
Package Preconfiguration
- Install dependencies
debian
sudo apt update; sudo apt install git jackd2 qjackctl zlib1g-dev
Arch
sudo pacman -Syu; pacman -Sy git jack2 qjackctl
- Remove conflicts
Arch
sudo pacman -R lib32-mesa-demos mesa-demos
SuperCollider Installation
- Install SuperCollider and SC3-Plugins
debian
sudo apt install supercollider sc3-{plugins,plugins-language,plugins-server}
Arch
sudo pacman -Sy supercollider sc3-plugins
SuperDirt Installation
SuperDirt is a plugin or "Quark" for SuperCollider, and functions as the audio engine for TidalCycles as well as providing the default set of samples.
- Get the version number of the latest SuperDirt release (you can also do this by checking the github page)
all
git ls-remote https://github.com/musikinformatik/SuperDirt.git | grep tags | tail -n1 | awk -F/ '{print $NF}'
- Install SuperDirt, update the version number if required. Once complete press
Ctrl+cto exitsclang
all
echo "Quarks.checkForUpdates({Quarks.install("SuperDirt", "v1.7.3"); thisProcess.recompile()})" | sclang -
Tidal Installation
- Install tidal - please note, Arch is the only distro to support Tidal installation via it's core package manager, other distros require using the haskell package/environment manager,
cabal (>=3.0.0.0)
Arch
sudo pacman -Sy haskell-tidal ghc ghc-libs haskell-{tidal,bifunctors,colour,hosc,mwc-random,network,primitive,random,vector,microspec}
all (except Arch)
cabal update; cabal install tidal --lib
Note: cabal can be notoriously fickle. If for some reason it fails, you can safely reset the environment by renaming your ~/.ghc and ~/.cabal folders, and re-running the above commands.
Choose a Text Editor
TidalCycles is supported by a wide variety of text editors, you will need one to get started:
- Pulsar (was Atom)
- VS Code
- vim/neovim
- emacs
... and more.
Start Tidal
You're almost there! Follow these instructions to get Tidal started