Catalina4astronomers

From MediaWiki

(Difference between revisions)
Jump to: navigation, search
m (Save)
m (Xcode)
Line 2: Line 2:
  AppStore: Xcode  
  AppStore: Xcode  
  terminal: xcode-select --install
  terminal: xcode-select --install
 +
 +
== Other useful software ==
 +
brew install imagemagick
== python ==
== python ==

Revision as of 06:12, 6 September 2020

Contents

Xcode

AppStore: Xcode 
terminal: xcode-select --install

Other useful software

brew install imagemagick

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 in the file Brewfile
 brew bundle dump
 brew bundle
 brew bundle cleanup
# Check the list
 cat Brewfile
Personal tools