Document miniminal, no-GUI anaconda install. authored by Alan De Smet's avatar Alan De Smet
......@@ -83,6 +83,25 @@ cd uwglance/pyglance
python setup.py develop
~~~~
<h3>Minimal Anaconda install, no GUI</h3>
~~~~
mkdir glance
cd glance
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh
/bin/bash Miniconda2-latest-Linux-x86_64.sh -b -p `pwd`/anaconda
source anaconda/bin/activate
conda install -y numpy scipy matplotlib pillow geos basemap mako markupsafe netcdf4
git clone --depth=1 https://gitlab.ssec.wisc.edu/evas/UW-Glance.git
cd UW-Glance/pyglance/
python setup.py develop
~~~~
The resulting executable is in glance/anaconda/bin/glance
<h3>Installing Using HHG</h3>
Please don't try to do this unless you already know what HHG is.
......
......