Getting Started¶
Install¶
cosmicsense comes as a pure Python package. It requires several dependencies
as listed in requirements.txt. We recommend conda for dependency management.
Install Miniconda (https://conda.io/miniconda.html).
Add the
conda-forgechannel as the new default:$ conda config --add channels conda-forge
Use strict channel priority to prevent channel clashes:
$ conda config --set channel_priority strict
Create a new
condaenvironment:$ conda create --name cosmicsense python=3.7
Activate the new environment:
Linux:
$ source activate cosmicsense
Windows:
> activate cosmicsense
Install dependencies:
(cosmicsense) $ conda install numpy scipy pandas matplotlib jupyter xlrd h5py netCDF4 xarray gdal deprecation xmltodict semver wradlib
Install
cosmicsensepackage from source:(cosmicsense) $ python setup.py install