The Ubuntu Software Centre has an older version and downloading Audacity from the website gave me a folder that doesn't seem to have a binary to start the program. How do I install version 2.1.0 in Ubuntu 14.10?
The Ubuntu Software Centre has an older version and downloading Audacity from the website gave me a folder that doesn't seem to have a binary to start the program. How do I install version 2.1.0 in Ubuntu 14.10?
Run these commands in a terminal
Source: http://ubuntuhandbook.org/index.php/2015/04/install-audacity-audio-editor-2-1-0-in-ubuntu-from-ppa/
You have to compile Audacity from source. The "README.txt" as part of the 2.1.0 package states that:
Running these commands should install Audacity 2.1.0 onto your system providing you have the necessary dependencies to compile and install it. The Audacity Sourceforge page states that:
Ubuntu should already have the required dependencies for Audacity, however you need development packages in order to compile. You could do this manually using
apt-get install
but because Audacity is already in the Ubuntu repositories we can runapt-get build-dep audacity
to install all of the required development packages for us.Now all you need to do is configure, make, and install Audacity as described in the readme file.
These steps compile audacity on Ubuntu 20.04
... see https://wiki.audacityteam.org/wiki/Building_On_Linux
DONE so now lets launch it
Bonus ... if you want to avoid seeing that popup message
when closing audacity lets edit the code and recompile :
in your editor search for string Save project before closing
old if (!sbSkipPromptingForSave
new sbSkipPromptingForSave = true; if (!sbSkipPromptingForSave
old bool ProjectManager::sbSkipPromptingForSave = false;
new bool ProjectManager::sbSkipPromptingForSave = true;
OK now save file and recompile