Replies: 1 comment 4 replies
-
Mh, we followed what PyTorch is doing, e.g., https://download.pytorch.org/whl/torch/. As such, only versions that actually need a prefix have one (Linux/Windows), other's (macOS) don't. I can try to fix this but it is not top prio. |
Beta Was this translation helpful? Give feedback.
4 replies
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
-
Recently, I found a problem when I tried to install Torch Geometric (CPU) with Poetry in MacOS but got an issue. I linked the issue for your reference https://github.com/orgs/python-poetry/discussions/8217
I found that https://data.pyg.org/whl/torch-2.0.0+cpu.html, packages for MacOS is missing
cpu
part. For example,pyg_lib
CPU for Linuxpyg_lib-0.2.0+pt20cpu-cp310-cp310-linux
pyg_lib
CPU for Macpyg_lib-0.2.0+pt20-cp310-cp310-macosx
This leads Poetry to find
pyg_lib-0.2.0+pt20cpu
for Mac, but this is unavailable.Could pyg team keep file naming consistent? I expect
pyg_lib-0.2.0+pt20cpu-cp310-cp310-macosx
as well.Beta Was this translation helpful? Give feedback.
All reactions