在 Ubuntu 16.04 上,运行umake ide idea
返回:
usage: umake ide [-h] {lighttable,visual-studio-code} ...
umake ide: error: argument framework: invalid choice: 'idea' (choose from 'lighttable', 'visual-studio-code')
Ubuntu Make 只给我提供了两个 IDE 安装选项:lighttable 和 visual-studio-code。但是,根据手册页和https://wiki.ubuntu.com/ubuntu-make,应该还有更多选项(其中包括“idea”)。有什么问题?
答案1
16.04 软件包中的 ubuntu-make 版本不支持 IntelliJ。根据科技极客您至少需要版本 16.03(Ubuntu 16.04 中的版本是 16.02.1)。为此,请执行以下操作(如果这是新安装):
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt update
sudo apt install ubuntu-make
如果您仍安装它,您可以执行以下操作:
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt update
sudo apt dist-upgrade
这使我的 ubuntu-make 版本升级到 16.09,并且我能够使用您在帖子中使用的命令安装 IntelliJ IDEA。