Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Set up the Python environment

If you have not done it yet, create a Python virtual environment.

Activate the conda environment and install the additional Phython package

Code Block
languagebash
titleSet up the python local environment and install required packages
collapsetrue
# create a local virtual environment, you can call it as you wish, here 'myenv' is used.
conda create -n myenv python=3.8 

# add repository channel
conda config --add channels conda-forge

# activate the local environment. 
conda activate myenv

# install the required packages
conda install -c conda-forge/label/main xarray cfgrib eccodes 
conda install cartopy netcdf4 matplotlib

# and the cdsapi
pip install cdsapi

...