facebookresearch / pytorch3d

PyTorch3D is FAIR's library of reusable components for deep learning with 3D data
https://pytorch3d.org/
Other
8.7k stars 1.3k forks source link

No wheel for cuda 12, pytorch 2.1.0 nor python 3.11 #1650

Open pbsds opened 11 months ago

pbsds commented 11 months ago
Python 3.11.5 (main, Sep  2 2023, 14:16:33) [GCC 13.2.1 20230801] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> import torch
>>> pyt_version_str=torch.__version__.split("+")[0].replace(".", "")
>>> version_str="".join([
...     f"py3{sys.version_info.minor}_cu",
...     torch.version.cuda.replace(".",""),
...     f"_pyt{pyt_version_str}"
... ])
>>> version_str
'py311_cu121_pyt210'
$ curl https://dl.fbaipublicfiles.com/pytorch3d/packaging/wheels/py311_cu121_pyt210/download.html | htmlq --pretty
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   243    0   243    0     0    361      0 --:--:-- --:--:-- --:--:--   361

<html>
  <head>
  </head>
  <body>
    <error>
      <code>
        AccessDenied</code>
      <message>Access Denied
      </message>
      <requestid>
        WCQT6FA6ESVSTYBP
      </requestid>
      <hostid>
        0qnJ7I8RDy9QX93/OodqsZ0EMn/PtJPihNI7DzLo1YjVZp5T8LnsD2VLv9YaMsXcoLaKSqDjXRE=
      </hostid>
    </error>
  </body>
</html>
bottler commented 11 months ago

There are no builds for python 3.11 yet. Wheel builds mostly just match colab.

MiroPsota commented 6 months ago

You can try my repository for building packages and PyPI simple index and see if it works for you: https://github.com/facebookresearch/pytorch3d/discussions/1752