我尝试在我的 Mac 上安装 Apache Ant,并按照以下步骤操作:
apache-ant-1.8.1-bin.tar.gz
/usr/local/
sudo sh
mv apache-ant-1.8.1-bin.tar.gz /usr/local/
现在我想使用cd /usr/local/但它不工作,我回来“没有这样的文件或目录”。
cd /usr/local/
然后我使用cd /usr/和ls命令,似乎本地文件夹在那里。如果我尝试访问它,我会得到同样的错误。
cd /usr/
ls
既然我已经使用sudo su了,为什么我无法访问它?有任何想法吗?
sudo su
Ant 已经安装在一些旧版本的 Mac OS X 上,因此您应该ant -version在尝试安装之前运行以测试它是否已安装。
ant -version
如果尚未安装,那么最好的办法是安装Homebrew ( brew install ant) 或MacPorts ( sudo port install apache- ant),并使用这些工具安装 Apache Ant。
brew install ant
sudo port install apache- ant
或者,虽然我强烈建议使用 Homebrew 或 MacPorts,但您可以手动安装 Apache Ant。为此,您需要:
假设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