Reputation: 91
I have installed Android Studio successfully but I don't know how to open it.
I give hard effort for open it on its own folder but i didn't find anything in its destination
I tried every file to open it, but it did not work.
Upvotes: 3
Views: 9467
Reputation: 5600
You could add an alias for android, to run it from the terminal. Open the .bashrc file and type in
alias android="sh path/to/studio.sh"
and save it. Restart the terminal or source the bash by typing
source .bashrc
.
When you want to start android, just type in android from the terminal.
Upvotes: 2
Reputation: 16214
If you are new, I recommend install synaptic:
sudo apt-get install synaptic
after install it run it:
sudo synaptic
and then type there android
, and the program will be listed
Upvotes: 2