Error on running metview-python

when I try to install the metview-python librarie, this error occurs:

!pip install ecmwf-opendata metview metview-python

Collecting ecmwf-opendata
Using cached ecmwf_opendata-0.3.22-py3-none-any.whl.metadata (22 kB)
Collecting metview
Using cached metview-1.16.1-py2.py3-none-any.whl.metadata (4.4 kB)
ERROR: Could not find a version that satisfies the requirement metview-python (from versions: none)
ERROR: No matching distribution found for metview-python

how can I solve this?

Hello,
I am guessing this is coming from our notebook examples. And I see now it is wrong.
Basically, you need to install Metview binaries first and then you can install Python part, but you can’t do both using pip.

If you are using Conda:
conda install -c conda-forge metview
conda install -c conda-forge metview-python

If you are not using Conda you can either:
brew install metview
pip install metview

(brew will give you metview binaries, pip will give you Python interface)

or

sudo apt-get install metview
pip install metview

You can read more here: https://metview.readthedocs.io/en/latest/install.html

I will update the notebook examples shortly.

Many thanks,
Milana