Comment on Boring Python: dependency management (2022)parentComments−hereonout22yYou can install pytorch with it, I have been doing so for a while. [tool.poetry.dependencies] torch = { version = "1.13.1+cu116", source = "pytorch-cuda" } [[tool.poetry.source]] name = "pytorch-cuda" url = "https://download.pytorch.org/whl/cu116" priority = "explicit" But, it does seem to go off and download many GBs of pytorch packages for all possible python, architecture and OS versions which takes ages. Feels very broken at least.
Comments
You can install pytorch with it, I have been doing so for a while.
But, it does seem to go off and download many GBs of pytorch packages for all possible python, architecture and OS versions which takes ages. Feels very broken at least.