Skip to content

Doesn't work on the latest RTX 50 Series cards due to Python Torch version #320

@digitalassassins

Description

@digitalassassins

The Python torch version is outdated and doesn't support the latest RTX 50 series cards.

If you want to use it on Docker with the latest RTX 50 series cards, you need to

  1. Download the git repository.
  2. edit the pyproject.toml

Change project-optional.dependencies to:

[project.optional-dependencies]
gpu = [
    "torch==2.7.0+cu128",
]

That's lines 43 - 46

Change tool.uv.index

[[tool.uv.index]]
name = "pytorch-cuda"
url = "https://download.pytorch.org/whl/cu128"
explicit = true

That's line 78 - 81

Build Docker package as normal, and the package will now work with RTX50 series GPUs

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions