Lyrebird is a Simple and powerful voice changer for Linux, written in GTK 3. In this post, we will demonstrate how to install and configure Lyrebird on Ubuntu Linux.
Installation
From release URL https://github.com/lyrebird-voice-changer/lyrebird/releases download the latest Debian package available.
We downloaded lyrebird_1.1.0-3.deb, you can also download from command line as,
$ wget -c https://github.com/lyrebird-voice-changer/lyrebird/releases/download/v1.1.0/lyrebird_1.1.0-3.deb
Lyrebird is depending on some more packages such as sox, python3-toml, libsox-fmt-pulse which you can install as below,
$ sudo apt-get install sox python3-toml libsox-fmt-pulse
While installing the above dependency, if you get an error such as,
he following packages have unmet dependencies:
libsox-fmt-pulse : Depends: libsox3 (>= 14.4.2~) but it is not going to be installed
sox : Depends: libsox-fmt-base (= 14.4.2+git20190427-2) but it is not going to be installed
Depends: libsox3 (= 14.4.2+git20190427-2) but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
you can run the –fix-broken install command as below and resolve the errors,
$ sudo apt --fix-broken install
Now, you can install the deb package using dpkg command as,
$ sudo dpkg -i lyrebird_1.1.0-3.deb
Reference – https://github.com/lyrebird-voice-changer/lyrebird