We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92bb1f1 commit c599b2aCopy full SHA for c599b2a
1 file changed
linuxdeploy-plugin-conda.sh
@@ -84,8 +84,9 @@ bash "$TMPDIR"/Miniconda3-latest-Linux-x86_64.sh -b -p "$APPDIR"/usr/conda -f
84
# activate environment
85
. "$APPDIR"/usr/conda/bin/activate
86
87
-# we don't want to use the system's conda RC file
88
-export CONDARC=/dev/null
+# we don't want to touch the system, therefore using a temporary home
+mkdir _temp_home
89
+export HOME=$(readlink -f _temp_home)
90
91
# conda-forge is used by many conda packages, therefore we'll add that channel by default
92
conda config --add channels conda-forge
0 commit comments