Olsi Hoxha
Olsi Hoxha

Reputation: 414

Unable to find candidates for torch

So I am trying to install torch on one of my projects and my specs are as below

Python 3.12.3 / pip latest / Poetry (version 2.0.1)/ I am on Apple M3 Max

Here is my pyproject.toml

torch = { version = "^2.5.1+cpu", source = "pytorch-cpu" }
torchvision = { version = "^0.20.1+cpu", source = "pytorch-cpu" }
torchaudio = { version = "^2.5.1+cpu", source = "pytorch-cpu" }

[[tool.poetry.source]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"

Adding a screenshot for more context enter image description here

Upvotes: 0

Views: 84

Answers (1)

savoya4196
savoya4196

Reputation: 71

There is no version 2.5.1+cpu of torch available for macos.

Upvotes: 1

Related Questions