Cómo desinstalar Android Studio si está instalado a través de Ubuntu Make

8

He instalado Android Studio usando Ubuntu Make . Ahora quiero desinstalarlo.

Vaibhav Mule
fuente
umakete ha pedido una ruta de instalación.
AB
¿Qué comando iniciará el programa?
AB
no necesita comando para comenzar. Crea un ícono en el lanzador.
Vaibhav Mule

Respuestas:

19

Entonces, si solo escribe 'umake', aquí está la salida:

$ umake
usage: umake [--help] [-v] [-r] {dart,web,android,games,ide,go} ...

Deploy and setup developers environment easily on ubuntu

positional arguments:
  {dart,web,android,games,ide,go}
                        Developer environment
    dart                Dartlang Development Environment
    web                 Web Developer Environment
    android             Android Development Environment
    games               Games Development Environment
    ide                 Generic IDEs
    go                  Go language

optional arguments:
  --help                Show this help
  -v, --verbose         Increase output verbosity (2 levels)
  -r, --remove          Remove specified framework if installed

Note that you can also configure different debug logs behaviors using LOG_CFG
pointing to a log yaml profile.

Entonces, siguiendo esto, debes usar:

$ umake android android-studio --remove
Tin Tvrtković
fuente