You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Torchvision's setup.py defines a scipy extra that pulls in the scipy dependency that is needed by some of Torchvision's modules. This lets you use torchvision[scipy] as an argument to pip install, which is good, since it's a way to explicitly state that you're installing SciPy as a dependency of Torchvision.
However, this extra doesn't seem to be documented anywhere, so it's unclear whether doing pip install torchvision[scipy] is officially supported. It would be nice if this was documented in the README or elsewhere.
The text was updated successfully, but these errors were encountered:
Torchvision's
setup.py
defines ascipy
extra that pulls in thescipy
dependency that is needed by some of Torchvision's modules. This lets you usetorchvision[scipy]
as an argument topip install
, which is good, since it's a way to explicitly state that you're installing SciPy as a dependency of Torchvision.However, this extra doesn't seem to be documented anywhere, so it's unclear whether doing
pip install torchvision[scipy]
is officially supported. It would be nice if this was documented in the README or elsewhere.The text was updated successfully, but these errors were encountered: