I am using manjaro OS KDE plasma on my Raspberry Pi 4b 8gb ram edition. So now I am installing Android Studio. I download snapshot of Android Studio from https://aur.archlinux.org/packages/android-studio/
The file is in .desktop format.
And then I tick on executable option in permissions from properties and then when I run it it show this:
Thanks
.desktop
file is a readable text file that allows GUI (Point and click) access to a program. It is NOT the program. Read the documentation. – waltinator May 14 '21 at 17:09git clone https://aur.archlinux.org/android-studio.git
,cd android-studio
and runmakepkg -sri
. Installing the package also ensuresandroid-studio
gets a symbolic link in/usr/bin
, which most likely is in your PATH - this a necessary condition not to incur in a "program not found" error. – fra-san May 14 '21 at 21:00