File tree 2 files changed +4
-2
lines changed 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ RUN cat /kaggle_requirements.txt >> /requirements.txt
21
21
22
22
# Install uv & Kaggle packages
23
23
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
24
- RUN export PATH="${HOME}/.local/bin:${PATH}" && uv pip install --system -r /requirements.txt
24
+ RUN export PATH="${HOME}/.local/bin:${PATH}" && uv pip install --system -v - r /requirements.txt
25
25
ENV PATH="~/.local/bin:${PATH}"
26
26
27
27
# Install manual packages:
@@ -44,6 +44,9 @@ RUN uv pip install --no-build-isolation --system "git+https://github.com/Kaggle/
44
44
# b/385145217 Latest Colab lacks mkl numpy, install it.
45
45
RUN uv pip install --system --force-reinstall -i https://pypi.anaconda.org/intel/simple numpy
46
46
47
+ # b/385145217 torch 2.4.x .
48
+ RUN uv pip install --system --force-reinstall --no-deps --extra-index-url=https://pypi.nvidia.com "cuml-cu12==25.2.1" "nvidia-cudnn-cu12==9.3.0.75"
49
+
47
50
# b/328788268 We install an incompatible pair of libs (shapely<2, libpysal==4.9.2) so we can't put this one in the requirements.txt
48
51
# newer daal4py requires tbb>=2022, but libpysal is downgrading it for some reason
49
52
RUN uv pip install --system "tbb>=2022" "libpysal==4.9.2"
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ catboost
23
23
category-encoders
24
24
cesium
25
25
comm
26
- cuml-cu12>=24.12.0
27
26
cytoolz
28
27
dask-expr
29
28
# Older versions of datasets fail with "Loading a dataset cached in a LocalFileSystem is not supported"
You can’t perform that action at this time.
0 commit comments