Newer
Older
###################
# Instructions for installing enstools-feature using conda
###################
# in enstools-package folder
conda create --name enstools-feature python=3.7
conda activate enstools-feature
# needed for cdo over conda. do this first to avoid conflicts
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install cdo
# install requirements listed in venv_setup.sh
pip install --upgrade pip
pip install ipykernel numpy wheel
# integrate enstools
pip install -e git+https://github.com/wavestoweather/enstools.git@main#egg=enstools
# install requirements for enstools-feature
conda install --file requirements.txt
# also for PV identification: custom scikit-fmm:
cd enstools/feature/identification/pv_streamer/scikit-fmm-custom
python setup.py install
# cdo wrapper (pip only)
pip install cdo
# back in enstools main dir, install enstools
pip install -e .