-
Greetings everyone! I'm currently in the process of installing JAX==0.2.8 and jaxlib==0.1.59 with GPU acceleration to run some old codes in a two-year-old paper. In a newly created conda environment, executing the command However, attempting to install version 0.2.8 using the command On the other hand, using the command I'm seeking guidance on the correct method to install the dependencies. Your assistance is greatly appreciated! Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can look at old versions of the documentation to see the installation instructions from that era: https://github.com/google/jax/tree/jax-v0.2.8#pip-installation. This is what it recomments, which is close to the third command in your question:
jaxlib v0.1.59 may also be compatible with jax v0.2.8: you'll have to double-check jax/jaxlib version compatibility, that was before we had a predictable version numbering scheme between the two distributions. This requires Python 3.8 or older, so unfortunately at the moment I currently have no easy way to check it myself. |
Beta Was this translation helpful? Give feedback.
cuda11_pip
was only added in JAX v0.4.11 (pip-installable CUDA binaries are a relatively recent development).You can look at old versions of the documentation to see the installation instructions from that era: https://github.com/google/jax/tree/jax-v0.2.8#pip-installation. This is what it recomments, which is close to the third command in your question:
jaxlib v0.1.59 may also be compatible with jax v0.2.8: you'll have to double-check jax/jaxlib version compatibility, that was before we had a predictable version numbering scheme between the two distributions.
This …