12

I have installed android studio using the instructions on the following site:

Android studio for ubuntu

Now once the install was complete I can see it was successful from the following:

enter image description here

However, no matter what I try I simply cannot find nor open it.

I've attempted:

android-studio
android

Ive tried searching for it on my computer but without results.

Has anyone ever tried the same and know what is going on?

Arronical
  • 19,893
Marc Rasmussen
  • 267
  • 1
  • 4
  • 15

4 Answers4

5

For me the path was:

/snap/android-studio/current/android-studio/bin

I'm on Ubuntu 20.4.3 LTS.

Tadej
  • 151
5
  1. Check in the /opt folder if you have the directory android-studio.

    On terminal:

      cd /opt
      ls
    
  2. If you find the directory android-studio, change the directory to cd /android-studio/bin

  3. You will find various files there. Run the studio.sh file

      sh studio.sh
    
  4. You will get the installation wizard.

    Edit:

  5. To open android studio, locate the path where Android Studio is installed. Use

    cd ~/installed-path/android-studio/bin
    

    Open studio with the command

    ./studio.sh
    
Zanna
  • 70,465
4

Look in /usr/local/.

That's where my Android Studio was residing, /usr/local/android-studio.

Eliah Kagan
  • 117,780
eVagabond
  • 282
1

On the guide you've linked to it claims that android-studio will be installed at /opt/android-studio, try typing the following into a terminal to check whether it's there:

ls -lh /opt/

Or otherwise use your file manager GUI to have a look.

Arronical
  • 19,893