How To Install libghc-tidal-prof on Kali Linux
Introduction
In this tutorial we learn how to install libghc-tidal-prof
on Kali Linux.
What is libghc-tidal-prof
libghc-tidal-prof 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 a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.
There are three methods to install libghc-tidal-prof
on Kali Linux. 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-prof 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-prof
using apt-get
by running the following command:
sudo apt-get -y install libghc-tidal-prof
Install libghc-tidal-prof Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libghc-tidal-prof
using apt
by running the following command:
sudo apt -y install libghc-tidal-prof
Install libghc-tidal-prof Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libghc-tidal-prof
using aptitude
by running the following command:
sudo aptitude -y install libghc-tidal-prof
How To Uninstall libghc-tidal-prof on Kali Linux
To uninstall only the libghc-tidal-prof
package we can use the following command:
sudo apt-get remove libghc-tidal-prof
Uninstall libghc-tidal-prof And Its Dependencies
To uninstall libghc-tidal-prof
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libghc-tidal-prof
Remove libghc-tidal-prof Configurations and Data
To remove libghc-tidal-prof
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libghc-tidal-prof
Remove libghc-tidal-prof configuration, data, and all of its dependencies
We can use the following command to remove libghc-tidal-prof
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-tidal-prof
Dependencies
libghc-tidal-prof have the following dependencies:
- libghc-tidal-dev
- libghc-base-prof-4.13.0.0-2f220
- libghc-bifunctors-prof-5.5.7-a016f
- libghc-bytestring-prof-0.10.10.1-c40ee
- libghc-clock-prof-0.8-b1f3c
- libghc-colour-prof-2.3.5-a6570
- libghc-containers-prof-0.6.2.1-ab1cf
- libghc-deepseq-prof-1.4.4.0-9f093
- libghc-hosc-prof-0.17-d81b7
- libghc-network-prof-3.1.1.1-464ab
- libghc-parsec-prof-3.1.14.0-b0d22
- libghc-primitive-prof-0.7.0.1-fc459
- libghc-random-prof-1.1-523a8
- libghc-text-prof-1.2.4.0-a7a6e
- libghc-transformers-prof-0.5.6.2-59c2c
- libghc-vector-prof-0.12.1.2-29734
References
Summary
In this tutorial we learn how to install libghc-tidal-prof
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.