-
Notifications
You must be signed in to change notification settings - Fork 15
Install using conda forge (recommended)
Jiwoo Lee edited this page Mar 21, 2022
·
1 revision
We offer an installation for conda users under linux-64 or osx-64. Support for Windows is not available yet.
https://anaconda.org/conda-forge/enso_metrics
- Install the Anaconda for Python 3.9 package (we recommend installing this for each user)
- Make sure anaconda is in your PATH (assuming anaconda is installed in ${HOME}/anaconda
-
export PATH=${HOME}/anaconda/bin:${PATH}
# for [ba]sh -
setenv PATH ${HOME}/anaconda/bin:${PATH}
# for [t]csh
-
Using the conda package manager, you can install the ENSO Metrics package from the enso_metrics conda-forge channel.
- Create a new virtual environment and install ENSO Metrics package
conda create -n [YOUR_CONDA_ENVIRONMENT] -c conda-forge enso_metrics
- or
conda create -n [YOUR_CONDA_ENVIRONMENT]
conda activate [YOUR_CONDA_ENVIRONMENT]
conda install -c conda-forge enso_metrics
- Install ENSO metrics package in the current (or existing) virtual environment
conda install -c conda-forge enso_metrics
To learn more about conda environments see: http://conda.pydata.org/docs/using/envs.html