Created
May 31, 2023 15:18
-
-
Save orzklv/9770acc748800ba9da327f0ec087f8e6 to your computer and use it in GitHub Desktop.
Install paru AUR manager on Arch Linux
This file contains hidden or 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
# We need to install rust | |
sudo pacman -S rustup, base-devel | |
# Install rust components | |
rustup # accept all defaults | |
# Let's clone the source code first | |
git clone https://aur.archlinux.org/paru.git | |
# Go to folder and install it | |
cd paru && makepkg -si | |
# Clean exit | |
cd ../ && rm -rf paru | |
# Create the config folder | |
mkdir -p ~/.config/paru | |
# Download the config folder from dots | |
wget https://raw.githubusercontent.com/katsuki-yuri/dots/master/.config/paru/paru.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment