pytorch3d
pytorch3d copied to clipboard
No wheel for cuda 12, pytorch 2.1.0 nor python 3.11
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>
There are no builds for python 3.11 yet. Wheel builds mostly just match colab.
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