We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9834807 commit 6c59739Copy full SHA for 6c59739
src/workbench-jupyter-parabricks/Dockerfile
@@ -36,7 +36,21 @@ USER ${NB_USER}
36
ENV SHELL=/bin/bash
37
38
# Install Jupyter Lab using pip
39
-RUN pip3 install jupyterlab
+RUN pip3 install jupyterlab && \
40
+ # Install NVIDIA Rapids
41
+ pip3 install \
42
+ --extra-index-url=https://pypi.nvidia.com \
43
+ "cudf-cu12==25.8.*" \
44
+ "dask-cudf-cu12==25.8.*" \
45
+ "cuml-cu12==25.8.*" \
46
+ "cugraph-cu12==25.8.*" \
47
+ "nx-cugraph-cu12==25.8.*" \
48
+ "cuxfilter-cu12==25.8.*" \
49
+ "cucim-cu12==25.8.*" \
50
+ "pylibraft-cu12==25.8.*" \
51
+ "raft-dask-cu12==25.8.*" \
52
+ "cuvs-cu12==25.8.*" \
53
+ "nx-cugraph-cu12==25.8.*"
54
55
### BEGIN parabricks ###
56
0 commit comments