Prebuilt wheels provided via 3rd party repository #1752
Replies: 11 comments 2 replies
-
谢谢你,自己编译好几次都失败了,还是用现成的吧,我好笨,仰望大佬 |
Beta Was this translation helpful? Give feedback.
-
can you check the build logs for windows 2.2.2 cu118? I tried to install from your repo to fix the dll import problem i'm having with torch3d but it seems the dll that should be in Lib\site-packages\pytorch3d is missing, if i understand the response to this issue that I'm also having #1664 |
Beta Was this translation helpful? Give feedback.
-
Wo! amazing!! I try it successfully! And my env is py3.11, cuda12.1, ubuntu22.04. I sincerely appreciate it that does me a favor!! |
Beta Was this translation helpful? Give feedback.
-
Thanks for your great work! This helped me a lot. |
Beta Was this translation helpful? Give feedback.
-
呜呜呜,好人一生平安 |
Beta Was this translation helpful? Give feedback.
-
so awesome gonna test now pip install --extra-index-url https://miropsota.github.io/torch_packages_builder pytorch3d==0.7.8+pt2.5.1cu124 |
Beta Was this translation helpful? Give feedback.
-
Works for me, thanks. @MiroPsota MiroPsota |
Beta Was this translation helpful? Give feedback.
-
Thanks A LOT! You really have saved our life! |
Beta Was this translation helpful? Give feedback.
-
Great! This deserves support from the official team plus a mention in the installation guide. |
Beta Was this translation helpful? Give feedback.
-
Great work! |
Beta Was this translation helpful? Give feedback.
-
Very helpful! This should go on the official install readme. |
Beta Was this translation helpful? Give feedback.
-
Prebuilt wheels for PyTorch packages with custom ops
I've created a repository that can build PyTorch wheels with custom ops through the GitHub Actions pipeline and publish them using GitHub Releases. Check it out at https://github.com/MiroPsota/torch_packages_builder.
Since there are various ways how to use it, please refer to the repository README for more information.
If you prefer own build or can't trust a 3rd party repository, feel free to fork it and build any package/version/commit ID you desire yourself.
PyTorch3D specific quick info:
Install using pip:
Where
<compute_platform>
is, as in PyTorch, one ofcpu
,cu<CUDA_short_version>
(e.g.cu121
,cu118
,cu102
), orrocm<ROCM_version>
(not supported right now).For example, the newest official release pytorch3d tag (as of writing)
v0.7.8
, PyTorch 2.5.1 with CUDA 12.1:I haven't built other combinations as of writing, I will probably build occasionally with new pytorch releases and versions/commits.
These wheels are built with PyTorch versions
1.11.0
to2.5.1
and their respective compute platforms and supported operating systems. Please note an exception for cu102 on Windows (due to no VS 2017 on the GitHubwindows-2019
runner) and the ROCm platform. The build is done using theubuntu-20.04
runner, so older Linux distributions might not work due to old libc.Although the wheels have been successfully built, I do not guarantee they work correctly for all combinations (let me know if not).
If you've installed PyTorch with pip, there's no need to have CUDA installed on your system, as the PyTorch wheels for pip bundle CUDA.
Beta Was this translation helpful? Give feedback.
All reactions