Issue
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?
Solution
Following step worked for me
- cd to YOUR_DIR_WHERE_ANDROID_STUDIO_TILL_BIN_FOLDER
- then type command sh studio.sh or ./studio.sh
Answered By - N J Answer Checked By - David Marino (WPSolving Volunteer)