Upon running
pip show qwen-vl-utils , I found that it requires av, packaging, pillow, requests . Each of these separately imported without error into Python with the exception of av.
I found that running:
pip uninstall av (to uninstall av from pip)
and then
conda install -c conda-forge av
to install it via conda fixed this issue with OpenSSL.
I thought I'd post this in case anyone else runs into this issue trying to run the new Qwen models or otherwise :)