Installing Android studio on Ubuntu

1

This is the first time I have installed android-studio, I installed with the commands:

sudo apt-add-repository ppa:paolorotolo/android-studio
sudo apt-get update
sudo apt-get install android-studio

At first glance everything went well, the problem is that I can not find it in the 'user-friendly' way, add it to the launch bar

IcanonlyopentheAndroidSDKManagerfromtheterminalwiththecommandandroidalreadywiththecommandandroidstudiotheoptionsappearbutiftheytrysomeofthem,theyarenotrecognized/executedbackthelistofoptions.

The solution should / may be basic but never moved on Android Studio

    
asked by anonymous 08.07.2015 / 16:34

2 answers

0

Download the .DEB file on this site:

link

Enter the directory by the Terminal and execute the following command (s), then enter the password to run as administrator:

sudo apt-get remove android-studio 
sudo dpkg -i nome_do_arquivo.deb

You can also do this by downloading the .tgz file, extracting it from a Linux directory, and pointing the path to the file (second site):

link

link

    
08.07.2015 / 16:46
0

remove android-studio --- > sudo apt autoremove android-studio  and then manually install through the Ubuntu store and make the necessary settings

    
10.04.2018 / 01:39