Installing theseus with pip install theseus-ai
with a specific version of PyTorch
#530
-
From reading the README, I am trying to install
You can find the raw pastebin with the output here: https://pastebin.com/raw/jFEXvawV However I notice that |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
HI @DanielTakeshi. It's sort of related, but not a consequence of that PR. A few months ago we made this the behavior of our wheels uploaded to pypi, after If you want a more custom install, you could try installing from source, or also try modifying this script, which is the one we use to build our wheels. In line 67 you can see the version is set to ">=1.13", unless you are using CUDA 10.2 or 11.3. Changing that line to equality and running the script should generate what you need. You can then run as ./build_scripts/build_wheel.sh ROOT_DIR 0.1.4 11.6 And then pip install from the generated wheel that's saved under ROOT_DIR. Let me know if you have any questions. |
Beta Was this translation helpful? Give feedback.
HI @DanielTakeshi. It's sort of related, but not a consequence of that PR. A few months ago we made this the behavior of our wheels uploaded to pypi, after
torch
1.13 deprecated some older CUDA versions, and in anticipation of eventually moving totorch
2.0.If you want a more custom install, you could try installing from source, or also try modifying this script, which is the one we use to build our wheels. In line 67 you can see the version is set to ">=1.13", unless you are using CUDA 10.2 or 11.3. Changing that line to equality and running the script should generate what you need. You can then run as
And then pip install from the gene…