-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Closed
Description
Under the README's Installation section it states:
TorchVision requires PyTorch 1.2 or newer.
This doesn't seem to be true as of 0.5.0. In a clean environment:
$ pipenv --python 3.7
$ pipenv install torchvision
$ pipenv graph
torchvision==0.5.0
- numpy [required: Any, installed: 1.18.1]
- pillow [required: >=4.1.1, installed: 7.0.0]
- six [required: Any, installed: 1.14.0]
- torch [required: ==1.4.0, installed: 1.4.0] <<< Strict requirement: torch==1.4.0
This seems related to #1257. Is this intended? Thanks.
Update: it seems like this is intended as per #1717. Maybe that PR should also update the README?