Skip to content
Snippets Groups Projects
Commit 57d60588 authored by Matthew Westphall's avatar Matthew Westphall
Browse files

added dmv wheel file

parent 3abbfd04
No related branches found
No related tags found
No related merge requests found
anaconda*.sh
#!/bin/bash
#download and install anaconda python 3
ANDACONDA_INSTALL=anaconda_install.sh
platform='unknown'
unamestr=`uname`
dmv_install=dmv-0.9.8-cp35-cp35m-macosx_10_5_x86_64.whl
if [[ "$unamestr" == 'Darwin' ]]; then
conda_url=https://repo.continuum.io/archive/Anaconda3-4.1.1-MacOSX-x86_64.sh
else
echo "Please install on OSX"
exit 1
fi
echo "This script will install Anaconda python and several python packages used
in manipulating AERI data. You will be prompted several times to confirm actions."
echo "Downloading Anaconda python..."
curl -o $ANDACONDA_INSTALL $conda_url
bash $ANDACONDA_INSTALL
#set python to installed anaconda
source ~/.bash_profile
#use anaconda to install netCDF4 and hdf5
echo "Installing netCDF4 and hdf5 from conda..."
conda install netcdf4
conda install hdf5
#install dmv and dmvadapter
echo "Installing dmv..."
pip install $dmv_install
#install aeri_tools
echo "Installing aeri_tools from gitlab..."
git clone git@gitlab.ssec.wisc.edu:cphillips/aeri_tools.git
cd aeri_tools
python setup.py install
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment