gpt4 book ai didi

macos - 如何在 Mac OS X 上安装 Apache Ant?

转载 作者:行者123 更新时间:2023-12-03 04:14:58 26 4
gpt4 key购买 nike

我尝试在 Mac 上安装 Apache Ant,并按照以下步骤操作:

  1. 我将 apache-ant-1.8.1-bin.tar.gz 下载到我的“下载”文件夹中。
  2. 我使用以下命令将文件移动到 /usr/local/:sudo shmv apache-ant-1.8.1-bin.tar。 gz/usr/local/

现在我想使用 cd/usr/local/ 但它不起作用,我得到“没有这样的文件或目录”。

然后我使用了 cd/usr/ls 命令,看起来本地文件夹就在那里。如果我尝试访问它,我会得到同样的错误。

既然我已经使用了 sudo su 为什么我无法访问它?有什么想法吗?

最佳答案

Ant 已安装在某些较旧版本的 Mac OS X 上,因此您应该在尝试安装之前运行 ant -version 来测试它是否已安装。

如果尚未安装,那么最好的选择是安装 Homebrew (brew install ant) 或 MacPorts (sudo port install apache-ant),并使用这些工具安装 Apache Ant。

或者,虽然我强烈建议使用 Homebrew 或 MacPorts,但您也可以手动安装 Apache Ant。为此,您需要:

  1. 解压 .tar.gz 文件。
  2. 可以选择将其放在某个地方。
  3. 将“bin”子目录放入您的路径中。

假设 apache-ant-1.8.1-bin.tar.gz (将 1.8.1 替换为实际版本)仍在您的下载目录中,您需要的命令是以下内容(包括解释性评论):

cd ~/Downloads # Let's get into your downloads folder.
tar -xvzf apache-ant-1.8.1-bin.tar.gz # Extract the folder
sudo mkdir -p /usr/local # Ensure that /usr/local exists
sudo cp -rf apache-ant-1.8.1-bin /usr/local/apache-ant # Copy it into /usr/local
# Add the new version of Ant to current terminal session
export PATH=/usr/local/apache-ant/bin:"$PATH"
# Add the new version of Ant to future terminal sessions
echo 'export PATH=/usr/local/apache-ant/bin:"$PATH"' >> ~/.profile
# Verify new version of ant
ant -version

关于macos - 如何在 Mac OS X 上安装 Apache Ant?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3222804/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com