Changes
Page history
New style Anaconda install.
authored
Dec 18, 2018
by
Alan De Smet
Show whitespace changes
Inline
Side-by-side
installation.md
View page @
2e281be8
...
...
@@ -78,6 +78,26 @@ If you want to do development on Glance, skip the "pip install ...uwglance..." s
cd ./UW-Glance/pyglance
python setup.py develop
Development Install Using Anaconda
----------------------------------
Tested on Ubuntu 18.04 on 2018-12-18
```
git clone --depth=1 https://gitlab.ssec.wisc.edu/evas/UW-Glance.git 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
cd pyglance/
python setup.py develop
cd ../..
```
`
glance is available as `
glance/anaconda/bin/glance
`
Minimal Anaconda install, no GUI
--------------------------------
...
...
...
...