0

I have downloaded Android-Studio and extracted it into documents. When I try to locate the studio.sh file located in Documents/android-studio/bin, I get an error.

How will I go ahead and install this Android Studio.

roman
  • 1

2 Answers2

1

Another way to install Android Studio is through ubuntu-make.

Add the Ubuntu Make ppa:

 $ sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
 $ sudo apt-get update

Install Ubuntu Make:

$ sudo apt-get install ubuntu-make

Install Android Studio:

$ umake android

For further information see Ubuntu wiki.

0

May be you have not made the script executable. So open a terminal and go to Documents/android-studio/bin:

cd `~/Documents/android-studio/bin

and make the studio.sh file executable by:

sudo chmod +x studio.sh

after pressing Enter, you will be prompt for root password, after entering password, hit Enter. Then type the below command and hit Enter

./studio.sh
Ron
  • 20,638