Skip to content
Snippets Groups Projects
Commit 50ceb533 authored by Christof Kaufmann's avatar Christof Kaufmann
Browse files

pytorch-gpu: Use mamba to enable wildcards

Conda gave an error, when trying to build the image with kaniko:
Found invalid version predicate in "*.*"

Mamba seems to work, at least with removed `--no-update-deps`.
parent c4e5a833
Branches
No related tags found
1 merge request!39Fix pytorch-gpu CI build
...@@ -41,9 +41,8 @@ RUN wget --no-hsts -q -O vscode_cli.tar.gz 'https://code.visualstudio.com/sha/do ...@@ -41,9 +41,8 @@ RUN wget --no-hsts -q -O vscode_cli.tar.gz 'https://code.visualstudio.com/sha/do
fix-permissions "${CONDA_DIR}" fix-permissions "${CONDA_DIR}"
# install some packages # install some packages
# NOTE: without --no-update-deps somehow an undefined symbol error in /opt/conda/lib/python3.11/lib-dynload/_sqlite3.cpython-311-x86_64-linux-gnu.so occurs, which crashes jupyter lab.
USER ${NB_UID} USER ${NB_UID}
RUN conda install --yes --no-update-deps \ RUN mamba install --yes \
# system monitor # system monitor
'bpytop' \ 'bpytop' \
# umap + hdbscan # umap + hdbscan
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment