如何在 ubuntu 14.04 中安装 ANT

Vin*_*mar 13 apt 14.04 apache-ant

我是 Ubuntu 的新手,我正在尝试在 Ubuntu 中安装 Apache ANT

我下载了包 (apache-ant-1.9.4-bin.tar.gz) 并在终端中给出了这样的命令

sudo apt-get install apache-ant-1.9.4-bin.tar.gz
Run Code Online (Sandbox Code Playgroud)

我收到了这两个错误

E: Unable to locate package apache-ant-1.9.4-bin.tar.gz
E: Couldn't find any package by regex 'apache-ant-1.9.4-bin.tar.gz'
Run Code Online (Sandbox Code Playgroud)

如果我使用

/etc/apt/sources.list

1   deb-src http://ppa.launchpad.net/klaus-vormweg/bluefish/ubuntu trusty main$
 2  sudo apt-get install python-software-properties$
 3  # deb cdrom:[Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417)]/ trusty main restricted$
 4  $
 5  # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to$
 6  # newer versions of the distribution.$
 7  $
 8  ## Major bug fix updates produced after the final release of the$
 9  ## distribution.$
10  $
11  ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu$
12  ## team. Also, please note that software in universe WILL NOT receive any$
13  ## review or updates from the Ubuntu security team.$
14  $
15  ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu $
16  ## team, and may not be under a free licence. Please satisfy yourself as to $
17  ## your rights to use the software. Also, please note that software in $
18  ## multiverse WILL NOT receive any review or updates from the Ubuntu$
19  ## security team.$
20  $
21  ## N.B. software from this repository may not have been tested as$
22  ## extensively as that contained in the main release, although it includes$
23  ## newer versions of some applications which may provide useful features.$
24  ## Also, please note that software in backports WILL NOT receive any review$
25  ## or updates from the Ubuntu security team.$
26  $
27  $
28  ## Uncomment the following two lines to add software from Canonical's$
29  ## 'partner' repository.$
30  ## This software is not part of Ubuntu, but is offered by Canonical and the$
31  ## respective vendors as a service to Ubuntu users.$
32  deb http://archive.canonical.com/ubuntu trusty partner$
33  deb-src http://archive.canonical.com/ubuntu trusty partner$
34  $
35   This software is not part of Ubuntu, but is offered by third-party$
36  developers who want to ship their latest software.$
37  deb http://extras.ubuntu.com/ubuntu trusty main$
38  deb-src http://extras.ubuntu.com/ubuntu trusty main$
39  deb http://archive.ubuntu.com/ubuntu trusty universe main multiverse restricted$
40  deb-src http://archive.ubuntu.com/ubuntu trusty universe main restricted multiverse #Added by software-properties$
41  deb http://security.ubuntu.com/ubuntu/ trusty-security universe main multiverse restricted$
42  deb http://archive.ubuntu.com/ubuntu trusty-updates universe main multiverse restricted$
43  deb http://archive.ubuntu.com/ubuntu trusty-proposed universe main multiverse restricted$
44  deb http://archive.ubuntu.com/ubuntu trusty-backports universe main multiverse restricted$
Run Code Online (Sandbox Code Playgroud)

我应该如何进行?

A.B*_*.B. 15

该文件apache-ant-1.9.4-bin.tar.gz不是可安装包。可安装包以.deb.

您可以通过包管理器安装ant

但首先你必须修复系统中的错误:

打开终端并运行此命令

sudo nano /etc/apt/sources.list
Run Code Online (Sandbox Code Playgroud)

删除该行(第 2 行)

sudo apt-get install python-software-properties$
Run Code Online (Sandbox Code Playgroud)

并在第 35 和 36 行#的开头添加一个:

# This software is not part of Ubuntu, but is offered by third-party
# developers who want to ship their latest software.
Run Code Online (Sandbox Code Playgroud)

$从你的sources.list

然后运行命令:

sudo apt-get update
Run Code Online (Sandbox Code Playgroud)

然后安装蚂蚁

sudo apt-get install ant
Run Code Online (Sandbox Code Playgroud)


use*_*301 9

简单地: sudo apt-get install ant

如果您需要更新的版本,那么您必须将下载的 .tar.gz 解压缩到某个地方并从那里运行 ant。

tar xzvf apache-ant-1.9.4-bin.tar.gz提取存档。它基本上只是一个 ZIP 存档。您也可以从文件浏览器中以图形方式提取它。