Skip to content
Discussion options

You must be logged in to vote

Can you say more about the system you're using? This seems to work, for example, on a Colab CPU or GPU runtime with jaxlib 0.1.70:

import jaxlib
print(jaxlib.__version__)
# 0.1.70
from jaxlib import cusolver
print(cusolver)
# <module 'jaxlib.cusolver' from '/usr/local/lib/python3.7/dist-packages/jaxlib/cusolver.py'>

Also, note that if you want to install older jaxlib versions, while they're not available on PyPI, you can use a command like the following:

!pip install jaxlib==0.1.55 -f https://storage.googleapis.com/jax-releases/jax_releases.html 

(we have to periodically remove older versions from PyPI because of their storage limits)

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@nprime496
Comment options

Answer selected by nprime496
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants