Answers for "how to install sublime text arch linux"

2

how to install sublime text on arch linux

curl -O https://download.sublimetext.com/sublimehq-pub.gpg && sudo pacman-key --add sublimehq-pub.gpg && sudo pacman-key --lsign-key 8A8F901A && rm sublimehq-pub.gpg
echo -e "\n[sublime-text]\nServer = https://download.sublimetext.com/arch/stable/x86_64" | sudo tee -a /etc/pacman.conf
sudo pacman -Syu sublime-text
Posted by: Guest on November-19-2020
1

how to install sublime text arch linux

// Using snap store

git clone https://aur.archlinux.org/snapd.git
cd snapd                                         // Installing snap
makepkg -si
sudo systemctl enable --now snapd.socket       // Enabling snap
sudo ln -s /var/lib/snapd/snap /snap          // Classic snap support

sudo snap install sublime-text --classic    // Installing sublime text
Posted by: Guest on October-13-2021
1

how to install sublime text arch linux

// Using yay AUR helper

/*
Installing yay
*/

sudo pacman -S git
cd /opt
sudo git clone https://aur.archlinux.org/yay-git.git
cd yay-git && makepkg -si
sudo yay -Syu --devel --timeupdate

/*
Installing sublime text
*/

yay -S sublime-text-4
Posted by: Guest on October-13-2021

Code answers related to "how to install sublime text arch linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language