Last active
July 19, 2024 15:33
-
-
Save ThePython10110/5544377d57645ce30d238f9cf926d71c to your computer and use it in GitHub Desktop.
How to install Ardour for free
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# Step 0: Use Arch | |
# Step 0.5: If you don't use Arch, try Distrobox (and use Arch). https://github.com/89luca89/distrobox | |
# Step 1: | |
sudo pacman -S ardour | |
# That's it. | |
# This is why I use Arch, by the way. | |
# After using Linux Mint for a while, I got annoyed with APT | |
# because nothing was up to date unless you added a separate | |
# repository... And with Arch, if something can be installed | |
# it's probably already in a built-in repository or the AUR. | |
# IDK why I decided these lines should be the same length... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment