HolyWu / vs-basicvsrpp

BasicVSR++ function for VapourSynth

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vapoursynth R62 portable + Python 3.11 + vs-basicvsrpp ?

Selur opened this issue · comments

Trying to get vs-basicvsrpp+ running with current Vapoursynth R62 and Python 3.11

Here's what I did, so far:

Scripts
Lib\site-packages
  • tried: python -m pip install torch==1.13.1+cu117 torchvision==0.14.1+cu117 --extra-index-url https://download.pytorch.org/whl/cu117 that failed since there is no Python 3.11 support for it.
  • called python -m pip install torch===2.0.1+cu117 torchvision==0.15.2 -f https://download.pytorch.org/whl/torch_stable.html which installed.
  • called python -m pip install -U openmim, which worked too.
  • called python -m mim install "mmcv-full>=1.7.1" which sadly failed, see: https://pastebin.com/R7PQFjVy

Any idea how to get this working?

commented

mmcv only provide 2.0.0 compiled version which support python 3.11

i try to install mmcv-2.0.0-cp311-cp311-win_amd64.whl and mmengine-0.7.3-py3-none-any.whl (mmcv-full is renamed to mmcv since v2.0)

then i find it isn't working

is there a mmcv-full 1.7.1 compiled for python 3.11?

commented

Fixed.

Thanks, works fine! 👍