Updated miniconda install instructions. authored by Alan De Smet's avatar Alan De Smet
......@@ -52,6 +52,36 @@ Replace the final "python -m easy_install ..." command in the installation instr
cd ./UW-Glance/pyglance
python setup.py develop
Development Install Using Anaconda
----------------------------------
This installs a dedicated Anaconda install for Glance's use.
Tested on Ubuntu 18.04 on 2020-08-21
```
cd $INSTALL_DIR # Whatever location you want
git clone https://gitlab.ssec.wisc.edu/evas/UW-Glance.git glance
cd glance
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh Miniconda3-latest-Linux-x86_64.sh -b -p "`pwd`/anaconda"
source anaconda/bin/activate
# You can omit some or all of these for file formats you don't need to read
conda install -y netcdf4 h5py
conda install -y -c conda-forge pyhdf gdal
cd pyglance/
python setup.py develop
cd ../..
```
glance is available as `glance/anaconda/bin/glance`
Obsolete Installation Instructions
==================================
**Please note that Methods below this line may not work. They have not been tested since Glance moved to using Python 3.6.**
***************
......@@ -89,26 +119,6 @@ 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 2019-05-23
```
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`
Optionally add ` conda install -c conda-forge pyhdf ` for HDF5 support.
Minimal Anaconda install, no GUI
......
......