Torchvision install Error

I had to create additional environment for ‘cv2’, after that I could easily install pytorch.
Unfortunately, when it comes to install torchvision. I got this Error:

Collecting torchvision
Downloading torchvision-0.5.0-cp37-cp37m-win_amd64.whl (1.2 MB)
Requirement already satisfied: pillow>=4.1.1 in c:\users\fachri\anaconda3\envs\opencv\lib\site-packages (from torchvision) (7.0.0)
ERROR: Could not find a version that satisfies the requirement torch==1.4.0 (from torchvision) (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch==1.4.0 (from torchvision)

This issue is usually raised, if your conda/pip environment wasn’t updated for some time.
Could you update conda/pip or create a new environment and retry the installation?

I tried both of them. Unfortunately couldn’t help

Please try out the install commands on https://pytorch.org. You could not install torchvision without pytorch using pip install torchvision because the Windows wheels are not hosted on PyPI.

I installed everything on my basic anaconda environment, both pytorch and torchvision is working well. cv2 didn’t work there, that’s why I created new environment only for cv and pytorch. In new environment cv2 and pytorch is working, unfortunately when I tried to install torchvision, it is getting ERROR as mentioned above.