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 aee37be commit a4ef9b1Copy full SHA for a4ef9b1
repo2docker/buildpacks/conda/install-miniconda.bash
@@ -57,8 +57,12 @@ if [[ -f /tmp/kernel-environment.yml ]]; then
57
58
conda env create -n kernel -f /tmp/kernel-environment.yml
59
${CONDA_DIR}/envs/kernel/bin/ipython kernel install --prefix "${CONDA_DIR}"
60
+ rm -f ${CONDA_DIR}/envs/kernel/conda-meta/history
61
fi
-
62
+# remove conda history file,
63
+# which seems to result in some effective pinning of packages in the initial env,
64
+# which we don't intend
65
+rm -f ${CONDA_DIR}/conda-meta/history
66
# Clean things out!
67
conda clean -tipsy
68
0 commit comments