Install on a Ubuntu server without admin rights #17200
-
Hello! This must be quite a recurring question, yet I can't find a way to solve it. How can we install jax, with GPU support (hence, with appropriate cuda and cudnn) on a server without admin rights? In particular for an ubuntu server 😄 Of course, I can use tools like conda and similar (so a pytorch installation, for example, works fine and can run on the GPUs). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I'd try the pip installation: This does not need admin rights (beyond the ability to install a The installation does require that you have the NVIDIA driver installed, but presumably your admin already did that, or you wouldn't be able to run anything on GPU. It also needs to be sufficiently new: if that's a problem the best option is to ask the admin to upgrade it. |
Beta Was this translation helpful? Give feedback.
Exactly, that's why I suggested
cuda12_pip
, notcuda12_local
. For a "local" install it's your responsibility to install all of the dependencies, and that's most easily done with admin rights.