ScubaDiving
ScubaDiving

Reputation: 57

Running Android Studio in Ubuntu

Recently I've installed Android Studio on my Ubuntu 14.04 laptop, and it installed and runs - but I can't figure out how to run it once I closed it. When I try to run the studio.sh file, it shows me the installation process again - and messes up the files I already created. How can I just start the program without having to "install" it every time? Thanks a lot in advance.

Upvotes: 2

Views: 10657

Answers (3)

miner333
miner333

Reputation: 1

When you exit studio.sh it pops up a window asking you if you want to run setup on the next start up something like that, I can't remember the exact verbage, you need to click the button that says no. Now when you start up it doesn't go through the set up again.

Upvotes: 0

Jyoti Prakash
Jyoti Prakash

Reputation: 4017

This is because this time you are not running it as root. Once you run the installation process, now start with root permissions: Try first

su root

then

./bin/studio.sh

or use

sudo ./bin/studio.sh

This time Android Studio will start.

Upvotes: 7

kroteDev
kroteDev

Reputation: 71

Try create a new folder in directory : /home/user. unzip the files and try running again. try to do this: https://www.youtube.com/watch?v=zEQIwKK7YjY

Upvotes: 0

Related Questions