Reputation: 297
how can I install android studio on garuda linux using Terminal (fish konsole) I have already tried to download android for debian but was unable to extract and install
Upvotes: 0
Views: 1366
Reputation: 145
Use JetBrains Toolbox to easily install anything JetBrains, It's 2023.
Upvotes: 0
Reputation: 297
INSTALLING ANDROID STUDIO ON ~: fish - konsole
On Arch Linux, snap can be installed from the Arch User Repository or by running a couple commands as follows.
clonning snapd
git clone https://aur.archlinux.org/snapd.git
cd snapd
makepkg -si
Once installed, run the folowing command to enable snap communication socke.
sudo systemctl enable --now snapd.socket
To enable classic snap support, run the following
sudo ln -s /var/lib/snapd/snap /snap
log out and back in again, or restart your system, to ensure snap’s paths are updated correctly.
Installing Android Studio
To install Android Studio, simply use the following command:
sudo snap install android-studio --classic
Thank you.
Upvotes: 1