Reputation: 9663
I downloaded Android Studio using below commands.
sudo apt-add-repository ppa:paolorotolo/android-studio
sudo apt-get update
sudo apt-get install android-studio
Now I couldn't find the path where android studio is installed and don't know how to open it?
Upvotes: 1
Views: 6895
Reputation: 101
Upvotes: 1
Reputation: 4413
After installation from terminal
, luncher icon should be displayed on unity dash board
. Press the unity
button ( if it is a windows designed keyboard it is the windows logo
button in between alt
and ctrl
) and search for android-studio
Upvotes: 0
Reputation: 1803
It will not truly 'install'. It is kind of an annoyance for first time users, but it is truly a stand-alone package, it will drop the SDK in your '/home'
and you need the 'android-studio'
and 'jdk1.8.0_45'
folders at a fixed location.
First, you need to set the 'JAVA_HOME' path in your /etc/environment
or ~/.bashrc
configuration to the 'jdk1.8.0_45'
folder before it will run.
After setting your 'JAVA_HOME'
, run 'studio.sh'
again and it will boot the IDE. Then at the menu, hit the 'Configure'
button then hit 'Create Desktop Entry'
. You should now have a start menu icon, and desktop icon which you can easily use.
Next time you boot and create a project it should download the SDK required for building.
Upvotes: 1