VideoHelp Forum




+ Reply to Thread
Results 1 to 14 of 14
  1. I am using this repo to install BasicVSR++
    https://github.com/HolyWu/vs-basicvsrpp
    I am trying with the following commands.

    pip install -U openmim - It runs properly

    mim install "mmcv>=2.0.0" - Stuck on this command its saying following message.

    C:\Users\SACHIN>mim install "mmcv>=2.0.0"
    'mim' is not recognized as an internal or external command,
    operable program or batch file.

    Anyone have idea about it?
    Quote Quote  
  2. DOes anyone can help me please to install this package.
    Quote Quote  
  3. Member
    Join Date
    Feb 2006
    Location
    United States
    Search Comp PM
    Originally Posted by Sach3932 View Post
    I am using this repo to install BasicVSR++
    https://github.com/HolyWu/vs-basicvsrpp
    I am trying with the following commands.

    pip install -U openmim - It runs properly

    mim install "mmcv>=2.0.0" - Stuck on this command its saying following message.

    C:\Users\SACHIN>mim install "mmcv>=2.0.0"
    'mim' is not recognized as an internal or external command,
    operable program or batch file.

    Anyone have idea about it?
    try with mim install "mmcv>=2.0.0rc1"
    https://mmcv.readthedocs.io/en/2.x/get_started/installation.html
    Quote Quote  
  4. Did you install PyTorch 1.13+ beforehand as HolyWu describes?
    'mim' is not recognized as an internal or external command,
    operable program or batch file.
    instead of mim, use the whole path,
    or navigate to that directory , where mim is, press Shift + right click on empty space in that mim's directory to get a pop up menu, press Open PowerShell window here, then write "cmd" (no quotes) to that window and press Enter to get a cmd prompt. That will default command prompt window to that mim's directory path. Then use mim command again in that window, you do not need to include the whole path because you are running cmd prompt from that directory.
    Last edited by _Al_; 25th Sep 2023 at 15:30.
    Quote Quote  
  5. Hello, I have already installed the PyTorch 1.13+ and I am not able to find the mim installation folder on my machine.
    Below is the detailed installation screenshot.
    Image Attached Thumbnails Click image for larger version

Name:	mim.png
Views:	51
Size:	669.3 KB
ID:	74043  

    Quote Quote  
  6. btw. if this is an attempt to install BasicVSR++ in Hybrid: this is the wrong way.
    for other cases, https://forum.doom9.org/showthread.php?t=183156 might help, I posted how I set up a portable Vapoursynth with BasicVSR++ and others. Required version numbers might not be up-to-date, but it should show how its generally done.
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  7. Member
    Join Date
    Aug 2018
    Location
    Wrocław
    Search PM
    Originally Posted by Sach3932 View Post
    I am using this repo to install BasicVSR++
    https://github.com/HolyWu/vs-basicvsrpp
    I am trying with the following commands.

    pip install -U openmim - It runs properly

    mim install "mmcv>=2.0.0" - Stuck on this command its saying following message.

    C:\Users\SACHIN>mim install "mmcv>=2.0.0"
    'mim' is not recognized as an internal or external command,
    operable program or batch file.

    Anyone have idea about it?
    How do you even install BasicVSR++? How do you install anything in Python in general?

    PHP Code:
    >>> pip install -U vsbasicvsrpp
      File 
    "<python-input-8>"line 1
        pip install 
    -U vsbasicvsrpp
            
    ^^^^^^^
    SyntaxErrorinvalid syntax
    >>> 
    Quote Quote  
  8. How do you even install BasicVSR++?
    It depends on your Python and Vapoursynth setup,...

    How do you install anything in Python in general?
    If you want to install anything for python, you usually use a package manager like pip.
    Depending on your environment you then use either:
    Code:
    python -m pip install -U <package name>
    or
    Code:
    pip install -U <package name>
    for Hybrid, which uses a portable Python and Vapoursynth, the first is correct.


    Cu Selur
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  9. Member
    Join Date
    Aug 2018
    Location
    Wrocław
    Search PM
    For now, I've installed Python (I already had 3.12, now I have 3.13).
    I installed pytorch 2.80 -- it worked without a problem using the command on their website.
    I'm installing it on the system, not on Hybrid.

    Edit: OK, the pip command should be issued in the Windows shell, not in python
    Quote Quote  
  10. I installed pytorch 2.80 -- it worked without a problem using the command on their website.
    2.8? Do you mean 3.8? Yes, depending on the Python version and the package dependencies it can fail or not.
    Happy you found a setup that worked for you.
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  11. Member
    Join Date
    Aug 2018
    Location
    Wrocław
    Search PM
    Latest: PyTorch Build -- Stable (2.8.0)
    Quote Quote  
  12. DOH, sorry. I misread PyTorch as Python, which caused my confusion.
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  13. Selur, thanks for detailed what to do.

    To make a bit more simple In your detailed explanation installing latest vapoursynth, compatible python, get-pip.py into a directory, running whl file, could be done just by running that Install-Portable-VapourSynth-R72.bat (that uses that *.ps1 file, that needs to be downloaded, or just run that ps1) from https://github.com/vapoursynth/vapoursynth/releases site. So as myrsloik mentioned, this replaces this part of your workflow:
    Create an empty Vapoursynth folder.
    Download portable Python (3.12)
    https://www.python.org/ftp/python/3.12.9/python-3.12.9-embed-amd64.zip
    Download portable Vapoursynth
    https://github.com/vapoursynth/vapoursynth/releases/download/R72/VapourSynth64-Portable-R72.zip
    Extract Python and then Vapoursynth into the Vapoursynth folder
    Change the content of the python312._pth to:
    Code:

    Scripts
    Lib\site-packages
    python312.zip
    .

    # Uncomment to run site.main() automatically
    #import site

    Install pip

    Download the pip installer
    https://bootstrap.pypa.io/get-pip.py and move it into your Vapoursynth folder
    Open a terminal inside the Vapoursynth and call:
    'python get-pip.py'

    Integrate Vapoursynth to the environment by calling:
    'python -m pip install wheel/VapourSynth-72-cp312-abi3-win_amd64.whl'
    So just running that bat would automatically download and put into a directory latest vapoursynth with python and do some init work running that whl.
    Last edited by _Al_; 22nd Aug 2025 at 19:54.
    Quote Quote  
  14. Yes, I copied (+modified) those steps from a step-by-step list I wrote when the Powershell script for the setup was not available. ��
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!