Error when try to install torchvision

I am trying to install torchvision (Windows) with pip:
pip install torchvision
When torch is already installed but I get the following error:

Collecting torchvision
  Using cached https://files.pythonhosted.org/packages/b7/ff/091b4503d5f228bd1120db784e2c071617211b965a8a78018e75750c7199/torchvision-0.3.0-cp37-cp37m-win_amd64.whl
Requirement already satisfied: numpy in c:\users\cergo\appdata\local\programs\python\python37\lib\site-packages (from torchvision) (1.16.4)
Collecting six (from torchvision)
  Using cached https://files.pythonhosted.org/packages/73/fb/00a976f728d0d1fecfe898238ce23f502a721c0ac0ecfedb80e0d88c64e9/six-1.12.0-py2.py3-none-any.whl
Requirement already satisfied: pillow>=4.1.1 in c:\users\cergo\appdata\local\programs\python\python37\lib\site-packages (from torchvision) (6.1.0)
Collecting torch>=1.1.0 (from torchvision)

  ERROR: Could not find a version that satisfies the requirement torch>=1.1.0 (from torchvision) (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch>=1.1.0 (from torchvision)

Please check out the new commands to install torchvision 0.3.0 on https://pytorch.org.

If you use this does it work?

pip install conda
conda install -c pytorch torchvision