DEV Community

Michael
Michael

Posted on

How to install android studio on Arch

  1. Clone the repository
git clone https://aur.archlinux.org/android-studio.git
Enter fullscreen mode Exit fullscreen mode
  1. Change into the directory
cd android-studio
Enter fullscreen mode Exit fullscreen mode
  1. Make the package
makepkg
Enter fullscreen mode Exit fullscreen mode
  1. Get the package name by printing the directory
ls
Enter fullscreen mode Exit fullscreen mode

package name

  1. Install with pacman
sudo pacman -U PACKAGE-NAME.pkg.tar.zst
Enter fullscreen mode Exit fullscreen mode

That's it! Though you have to update it yourself now. You could do this by performing a git pull, running makepkg and running pacman -U

Thanks for reading

Top comments (0)