pytorch3d icon indicating copy to clipboard operation
pytorch3d copied to clipboard

No wheel for cuda 12, pytorch 2.1.0 nor python 3.11

Open pbsds opened this issue 2 years ago • 2 comments

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>

pbsds avatar Oct 09 '23 17:10 pbsds

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

bottler avatar Oct 31 '23 20:10 bottler

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

MiroPsota avatar Mar 07 '24 13:03 MiroPsota