How To Install libghc-tidal-doc on Debian 10
Introduction
In this tutorial we learn how to install libghc-tidal-doc
on Debian 10.
What is libghc-tidal-doc
libghc-tidal-doc is:
TidalCycles (or Tidal for short) is a domain-specific language for live coding patterns. It allows you to make musical patterns with text, describing sequences and ways of transforming and combining them, exploring complex interactions between simple parts.
Tidal allows you to express music with very flexible timing, providing a little language for describing patterns as step sequences (which can be polyphonic and polymetric), some generators of continuous patterns (e.g. sinewaves, sawtooths) and a wide range of pattern transformations.
Tidal is highly composable in that pattern transformations can be easily combined together, allowing you to quickly create complex patterns from simple ingredients.
Tidal does not make sound itself, but is designed for use with the SuperDirt synth, and can control other synths over Open Sound Control or MIDI.
This package provides the documentation for a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
There are three methods to install libghc-tidal-doc
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libghc-tidal-doc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libghc-tidal-doc
using apt-get
by running the following command:
sudo apt-get -y install libghc-tidal-doc
Install libghc-tidal-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libghc-tidal-doc
using apt
by running the following command:
sudo apt -y install libghc-tidal-doc
Install libghc-tidal-doc Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libghc-tidal-doc
using aptitude
by running the following command:
sudo aptitude -y install libghc-tidal-doc
How To Uninstall libghc-tidal-doc on Debian 10
To uninstall only the libghc-tidal-doc
package we can use the following command:
sudo apt-get remove libghc-tidal-doc
Uninstall libghc-tidal-doc And Its Dependencies
To uninstall libghc-tidal-doc
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libghc-tidal-doc
Remove libghc-tidal-doc Configurations and Data
To remove libghc-tidal-doc
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libghc-tidal-doc
Remove libghc-tidal-doc configuration, data, and all of its dependencies
We can use the following command to remove libghc-tidal-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-tidal-doc
Dependencies
libghc-tidal-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libghc-tidal-doc
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.