Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

studio.sh command not found - Ubuntu

I am trying to get Android Studio running. I have installed jdk and jre

sudo apt-get install default-jre
sudo apt-get install default-jdk

I have set up my .bashrc and /etc/environment file to

export JAVA_HOME=/usr/lib/jvm/java-1.7.0-openjdk-amd64
export PATH=$JAVA_HOME/bin:$PATH

but still nothing.

$JAVA_HOME returns correct value and so do java -version and whereis javac

What am I missing?

like image 816
Anshu Dutta Avatar asked Feb 23 '16 08:02

Anshu Dutta


1 Answers

Following step worked for me

  1. cd to YOUR_DIR_WHERE_ANDROID_STUDIO_TILL_BIN_FOLDER
  2. then type command sh studio.sh or ./studio.sh
like image 130
N J Avatar answered Sep 28 '22 05:09

N J