Skip to content

Instantly share code, notes, and snippets.

@SidduSomething
Last active March 21, 2016 10:46
Show Gist options
  • Save SidduSomething/6985065931963bdf542b to your computer and use it in GitHub Desktop.
Save SidduSomething/6985065931963bdf542b to your computer and use it in GitHub Desktop.
Android Studio Install Steps

Install Android Studio via PPA in Ubuntu:

Installing Android Studio in Ubuntu becomes easy. A Ubuntu PPA contains simple script that automatically downloads and installs the latest release from Google download server. So far, Ubuntu 15.04, Ubuntu 14.10, Ubuntu 14.04, and Ubuntu 12.04 are supported.

  • Android Studio depends on Java, and Oracle Java 7 or 8 is recommended. Press Ctrl+Alt+T on keyboard to open terminal. When it opens, run the commands below one by one:

    sudo add-apt-repository -y ppa:webupd8team/java
    
    sudo apt-get update
    
    sudo apt-get install oracle-java7-installer oracle-java7-set-default
    
  • To add the Android Studio PPA, run the command:

    sudo add-apt-repository ppa:paolorotolo/android-studio
    
  • Then update package lists and install the script:

    sudo apt-get update
    
    sudo apt-get install android-studio
    
  • Depends on your internet connection, it takes a few minutes downloading the source package.

  • Once installed, start the setup wizard from the Unity Dash (may need restart), or just run command /opt/android-studio/bin/studio.sh.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment