-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Closed
Description
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.