<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.aob.rs/index.php?action=history&amp;feed=atom&amp;title=Catalina4Astronomers</id>
	<title>Catalina4Astronomers - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.aob.rs/index.php?action=history&amp;feed=atom&amp;title=Catalina4Astronomers"/>
	<link rel="alternate" type="text/html" href="http://wiki.aob.rs/index.php?title=Catalina4Astronomers&amp;action=history"/>
	<updated>2026-04-04T04:33:16Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.33.1</generator>
	<entry>
		<id>http://wiki.aob.rs/index.php?title=Catalina4Astronomers&amp;diff=81&amp;oldid=prev</id>
		<title>Ana.Lalovic: Created page with &quot;== Xcode ==  AppStore: Xcode   terminal: xcode-select --install  == Homebrew ==  ruby -e &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&quot;  By...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.aob.rs/index.php?title=Catalina4Astronomers&amp;diff=81&amp;oldid=prev"/>
		<updated>2023-11-10T12:33:42Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Xcode ==  AppStore: Xcode   terminal: xcode-select --install  == Homebrew ==  ruby -e &amp;quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&amp;quot;  By...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Xcode ==&lt;br /&gt;
 AppStore: Xcode &lt;br /&gt;
 terminal: xcode-select --install&lt;br /&gt;
&lt;br /&gt;
== Homebrew ==&lt;br /&gt;
 ruby -e &amp;quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
By default, Homebrew installs packages in: /usr/local/Cellar/ and symbolic links in /usr/local/opt/.&lt;br /&gt;
&lt;br /&gt;
== Expanding repository list ==&lt;br /&gt;
 brew tap &amp;quot;homebrew/bundle&amp;quot;&lt;br /&gt;
 brew tap &amp;quot;homebrew/core&amp;quot;&lt;br /&gt;
 brew tap &amp;quot;brewsci/science&amp;quot;&lt;br /&gt;
 brew tap &amp;quot;brewsci/bio&amp;quot;&lt;br /&gt;
 brew tap &amp;quot;brewsci/base&amp;quot;&lt;br /&gt;
 brew tap &amp;quot;brewsci/num&amp;quot;&lt;br /&gt;
 brew update&lt;br /&gt;
&lt;br /&gt;
== Other useful software ==&lt;br /&gt;
 brew install coreutils&lt;br /&gt;
 brew install findutils&lt;br /&gt;
 brew install gnu-sed&lt;br /&gt;
 brew install gnu-tar&lt;br /&gt;
 brew install gnu-which&lt;br /&gt;
 brew cask install xquartz&lt;br /&gt;
 brew install ghostscript&lt;br /&gt;
 brew install gv&lt;br /&gt;
 brew install texshop&lt;br /&gt;
 brew install imagemagick&lt;br /&gt;
 brew install pgplot&lt;br /&gt;
&lt;br /&gt;
 # Edit ~/.bash_profile&lt;br /&gt;
 PATH=&amp;quot;/usr/local/opt/coreutils/libexec/gnubin:$PATH&amp;quot;&lt;br /&gt;
 MANPATH=&amp;quot;/usr/local/opt/coreutils/libexec/gnuman:$MANPATH&amp;quot;&lt;br /&gt;
 PATH=&amp;quot;/usr/local/opt/findutils/libexec/gnubin:$PATH&amp;quot;&lt;br /&gt;
 MANPATH=&amp;quot;/usr/local/opt/findutils/libexec/gnuman:$MANPATH&amp;quot;&lt;br /&gt;
 PATH=&amp;quot;/usr/local/opt/gnu-sed/libexec/gnubin:$PATH&amp;quot;&lt;br /&gt;
 MANPATH=&amp;quot;/usr/local/opt/grep/libexec/gnuman:$MANPATH&amp;quot;&lt;br /&gt;
 PATH=&amp;quot;/usr/local/opt/grep/libexec/gnubin:$PATH&amp;quot;&lt;br /&gt;
 MANPATH=&amp;quot;/usr/local/opt/gnu-which/libexec/gnuman:$MANPATH&amp;quot;&lt;br /&gt;
 PATH=&amp;quot;/usr/local/opt/gnu-which/libexec/gnubin:$PATH&amp;quot;&lt;br /&gt;
 MANPATH=&amp;quot;/usr/local/opt/gnu-sed/libexec/gnuman:$MANPATH&amp;quot;&lt;br /&gt;
 PATH=&amp;quot;/usr/local/opt/gnu-tar/libexec/gnubin:$PATH&amp;quot;&lt;br /&gt;
 MANPATH=&amp;quot;/usr/local/opt/gnu-tar/libexec/gnuman:$MANPATH&amp;quot;&lt;br /&gt;
 PATH=&amp;quot;/usr/local/opt/make/libexec/gnubin:$PATH&amp;quot;&lt;br /&gt;
 MANPATH=&amp;quot;/usr/local/opt/make/libexec/gnuman:$MANPATH&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== python ==&lt;br /&gt;
 brew install pyenv &lt;br /&gt;
 pyenv install 3.8.5 # 3.8.5 being the latest python version&lt;br /&gt;
 pyenv global 3.8.5 # set it as a global default version for pyenv environments&lt;br /&gt;
 pyenv version&lt;br /&gt;
 # Edit ~/.bash_profile with &lt;br /&gt;
 if command -v pyenv 1&amp;gt;/dev/null 2&amp;gt;&amp;amp;1; then&lt;br /&gt;
  eval &amp;quot;$(pyenv init -)&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
&lt;br /&gt;
== pip ==&lt;br /&gt;
 curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py&lt;br /&gt;
 python get-pip.py&lt;br /&gt;
&lt;br /&gt;
== Anaconda ==&lt;br /&gt;
 git clone --recursive git://github.com/astropy/astropy.git&lt;br /&gt;
 cd astropy&lt;br /&gt;
 pip install .&lt;br /&gt;
 conda install astropy&lt;br /&gt;
 conda install pytest-astropy&lt;br /&gt;
&lt;br /&gt;
== pPXF ==&lt;br /&gt;
 pip install --upgrade ppxf&lt;br /&gt;
 pip show ppxf&lt;br /&gt;
&lt;br /&gt;
== Bertin's software ==&lt;br /&gt;
 brew install sextractor&lt;br /&gt;
 brew install scamp&lt;br /&gt;
 sudo port install swarp&lt;br /&gt;
&lt;br /&gt;
== Astrometry ==&lt;br /&gt;
  brew install svn&lt;br /&gt;
  brew install --HEAD netpbm&lt;br /&gt;
  brew install cfitsio&lt;br /&gt;
  brew install md5sha1sum&lt;br /&gt;
  brew install astrometry-net&lt;br /&gt;
  cd /usr/local/Cellar/astrometry-net/0.82&lt;br /&gt;
  mkdir data&lt;br /&gt;
  cd data&lt;br /&gt;
  wget http://data.astrometry.net/4200/wget.sh .&lt;br /&gt;
  sh wget.sh&lt;br /&gt;
  # Test: &lt;br /&gt;
  cd ..&lt;br /&gt;
  solve-field --scale-low 10 examples/apod4.jpg&lt;br /&gt;
&lt;br /&gt;
== Save ==&lt;br /&gt;
 # At the end save the list of installed software with brew in the file Brewfile&lt;br /&gt;
  brew bundle dump&lt;br /&gt;
  brew bundle&lt;br /&gt;
  brew bundle cleanup&lt;br /&gt;
 # Check the list&lt;br /&gt;
  cat Brewfile&lt;/div&gt;</summary>
		<author><name>Ana.Lalovic</name></author>
		
	</entry>
</feed>