Feb 08
Created a video for installing apache ant on Mac running on MacOS Sierra and here is the steps to follow along.
- Download Apache Ant to your desktop and unzip the files
- Rename the folder to ant
- Open the Terminal
- Move the files to /usr/local [code]sudo mv ~/desktop/ant ~/usr/local/ant[/code]
- Fix the permission [code]chown -R root:wheel /usr/local/ant[/code]
- Edit the bash_profile with your favorite editor [code]sudo vi .bash_profile[/code]
- Add the path to the ant bin directory [code]export PATH=$PATH:/usr/local/ant/bin[/code]
- Save and exit your editor
- Test out if ant was successfully installed. [code]ant -v[/code]
Other Notes: If you are getting an error when you run any commands:
Unable to locate tools.jar. Expected to find it in /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/tools.jar
This means you do not have the Java JDK installed. Go to java.com and download and install the JDK.
Edit your bash_profile and update the path for the JAVA_HOME.
[code]export JAVA_HOME=$(usr/libexec/java_home)[/code]Subscribe to my Youtube channel for more how to video tutorials.
Leave a Reply