Ubuntu Make를 통해 설치된 경우 Android Studio를 제거하는 방법 설치했습니다 . 이제 제거하고 싶습니다.

Ubuntu Make를 사용하여 Android Studio를 설치했습니다 . 이제 제거하고 싶습니다.



답변

따라서 ‘umake’만 입력하면 다음과 같이 출력됩니다.

$ 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.

따라서이 작업을 수행하면 다음을 사용해야합니다.

$ umake android android-studio --remove


답변