Catalina4astronomers

From MediaWiki

(Difference between revisions)
Jump to: navigation, search
m (Anaconda)
m (Astrometry)
Line 35: Line 35:
== Astrometry ==
== Astrometry ==
 +
  brew install svn
 +
  brew install --HEAD netpbm
 +
  brew install cfitsio
 +
  brew install md5sha1sum
   brew install astrometry-net
   brew install astrometry-net
   cd /usr/local/Cellar/astrometry-net/0.82
   cd /usr/local/Cellar/astrometry-net/0.82
Line 44: Line 48:
   cd ..
   cd ..
   solve-field --scale-low 10 examples/apod4.jpg
   solve-field --scale-low 10 examples/apod4.jpg
 +
 +
== Save ==
 +
# At the end save the list of installed software with brew
 +
  brew bundle dump
 +
  brew bundle
 +
  brew bundle cleanup

Revision as of 06:09, 6 September 2020

Contents

Xcode

AppStore: Xcode 
terminal: xcode-select --install

python

brew install pyenv 
pyenv install 3.8.5 # 3.8.5 being the latest python version
pyenv global 3.8.5 # set it as a global default version for pyenv environments
pyenv version
# Edit ~/.bash_profile with 
if command -v pyenv 1>/dev/null 2>&1; then
 eval "$(pyenv init -)"
fi

Homebrew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py

Anaconda

git clone --recursive git://github.com/astropy/astropy.git
cd astropy
pip install .

pPXF

pip install --upgrade ppxf
pip show ppxf

Bertin's software

brew install sextractor
brew install scamp
sudo port install swarp

Astrometry

 brew install svn
 brew install --HEAD netpbm
 brew install cfitsio
 brew install md5sha1sum
 brew install astrometry-net
 cd /usr/local/Cellar/astrometry-net/0.82
 mkdir data
 cd data
 wget http://data.astrometry.net/4200/wget.sh .
 sh wget.sh
 # Test: 
 cd ..
 solve-field --scale-low 10 examples/apod4.jpg

Save

# At the end save the list of installed software with brew 
 brew bundle dump
 brew bundle
 brew bundle cleanup
Personal tools