-
Notifications
You must be signed in to change notification settings - Fork 7
Installation: fits
acozine edited this page Oct 24, 2013
·
21 revisions
- Change to the install directory
mkdir -p /opt/install && cd /opt/install
- Get fits
wget http://fits.googlecode.com/files/fits-0.6.1.zip
- Install fits
unzip fits-0.6.1.zip
sudo chmod +x fits-0.6.1/fits.sh
sudo cp -r fits-0.6.1/* /usr/local/bin/
- Confirm fits. Typing
fits.sh
should return “Invalid CLI options” and the fits usage notes. Typingfits.sh –i filename
should return a bunch of xml about the file you selected. - Troubleshoot fits as necessary. If you get “command not found”, try
echo $PATH
– if /usr/local/bin is not included, add it to the relevant user’s bash_profile. You may also need to simlink fits to fit.sh
sudo ln -s /usr/local/bin/fits.sh /usr/local/bin/fits
For more info, see the fits documentation