EBAS IO
ebas-io is a python package for reading/writing NASA-Ames 1001 files with EBAS extensions (EBAS NASA-Ames).
Downloading the software
Starting with version 1.00.13, the python egg is available in this git repository (dist folder) together with the example scripts. The idea behind the git repo ist to make it easier for users to contribute their software using ebas-io and make it available for other users.
Installation
Attention: changed package structure as of version 3.0.13! Starting with version 3.0.13, all nilu internal dependencies (nilutility, AtmosPhys, fileformats) are now included in the ebas-io egg. This means, the installation is now much simpler. But: users having installed an earlier version should clean their python installation form this old extra packages before installing the new ebas-io package. This can be done as follows:
pip uninstall AtmosPhys pip uninstall fileformats pip uninstall nilutility pip uninstall ebas-io
---
The ebas-io package can be installed the standard way with easy_install. See the [setuptools](https://pypi.python.org/pypi/setuptools) documentation if easy_install does not work for you.
```bash
easy_install ebas_io-3.0.13-py2.7.egg
Please mind that you probably have to have administrator rights ('sudo easy_install ...' on linux/unix machines). Alternatively you may want to install the packages locally for your user (see --prefix in the easy_install documentation).