E:软件包‘maven2’没有安装候选项

E:软件包‘maven2’没有安装候选项

我正在尝试安装 mavensudo apt-get install maven2

应该非常简单,但我得到了这个:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package maven2 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  maven

E: Package 'maven2' has no installation candidate

有什么提示吗?

谢谢

答案1

maven2软件包位于 Universe 存储库中http://packages.ubuntu.com/search?keywords=maven2. 因此,您需要启用 universe repo。

然后使用

sudo apt-get update 

更新软件索引。

然后使用

sudo apt-get install maven2

安装它

相关内容