16

I am new to Ubuntu and trying to install audacity on Ubuntu. I tried these commands & didn't work.

sudo add-apt-repository -y ppa:audacity-team/daily && sudo apt-get update && sudo apt-get install audacity && sudo apt-get -f install

can anybody please help me in this. Thanks in Advance

Arronical
  • 19,893
archeiz
  • 171
  • You shouldn't run sudo apt-get -f install unless you get messages about missing dependencies or broken installations. This command is not part of a normal installation procedure. – Stormlord Aug 02 '16 at 15:27
  • audacity is in universe repository. You don't need to add a PPA for that. And add PPA only you are aware of the risk – Anwar Aug 03 '16 at 04:43

1 Answers1

38

Is there a reason you are not using the Ubuntu main repo? If not:

sudo apt-get install audacity
matt3o
  • 941