我尝试使用 ubuntu-make 在 Ubuntu 16.04 中安装 Android Studio 2.0,如维基手册和视频。
fieldmarshal@fmcomp:~$ umake android
ERROR: A default framework for category Android was requested where there is none
usage: umake android [-h] {android-ndk} ...
另一种输入方式也无济于事:
fieldmarshal@fmcomp:~$ umake android android-studio
usage: umake android [-h] {android-ndk} ...
umake android: error: argument framework: invalid choice: 'android-studio' (choose from 'android-ndk')
虽然其他 IDE 安装正常,例如当我运行:时
umake ide idea
,一切正常。
但是当我尝试安装 Android Studio 时,我一直收到这些错误。
答案1
我在另一个 askubuntu 线程中找到了解决方案:为什么我无法再从 umake 获取 Android Studio?
尽管我使用的是 Linux Mint,但从上面的链接获取的以下内容对我有用:
您需要最新版本的 umake,截至撰写本文时为 17.03。我的版本太旧了,所以我替换了它。
umake --version
不要从标准 ubuntu 存储库安装 umake,而是添加 ubuntu-desktop 存储库以获取最新的 umake 版本。通过添加存储库
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
更新软件源
sudo apt-get update
现在安装/升级 umake
sudo apt-get install ubuntu-make
现在安装 Android Studio
sudo umake android