Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osx_aeri_data_python_installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Matthew Westphall
osx_aeri_data_python_installer
Commits
57d60588
Commit
57d60588
authored
8 years ago
by
Matthew Westphall
Browse files
Options
Downloads
Patches
Plain Diff
added dmv wheel file
parent
3abbfd04
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
aeri_python_setup.sh
+37
-0
37 additions, 0 deletions
aeri_python_setup.sh
dmv-0.9.8-cp35-cp35m-macosx_10_5_x86_64.whl
+0
-0
0 additions, 0 deletions
dmv-0.9.8-cp35-cp35m-macosx_10_5_x86_64.whl
with
38 additions
and
0 deletions
.gitignore
0 → 100644
+
1
−
0
View file @
57d60588
anaconda*.sh
This diff is collapsed.
Click to expand it.
aeri_python_setup.sh
0 → 100644
+
37
−
0
View file @
57d60588
#!/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
This diff is collapsed.
Click to expand it.
dmv-0.9.8-cp35-cp35m-macosx_10_5_x86_64.whl
0 → 100644
+
0
−
0
View file @
57d60588
File added
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment