Comment by rhn_mk1
4 years ago
What OS does this need? Using Ubuntu 20.04, I'm getting stuck on openvino:
> $ pip install > Could not find a version that satisfies the requirement openvino==2022.1.0 (from -r requirements.txt (line 6)) (from versions: 2021.4.0, 2021.4.1, 2021.4.2)
I even upgraded to python3.9, which, inexplicably, is required but not available in the "supported" OS.
EDIT: apparently it requires a version of pip that's newer than the one bundled with Ubuntu.
For anyone else who runs into this issue, run this: pip install --upgrade pip
Then run this again: pip install -r requirements.txt
also, make sure you're using python3.9 or lower
https://stackoverflow.com/a/70501550/21539