Skip to content

Commit c599b2a

Browse files
authored
Update linuxdeploy-plugin-conda.sh
1 parent 92bb1f1 commit c599b2a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

linuxdeploy-plugin-conda.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@ bash "$TMPDIR"/Miniconda3-latest-Linux-x86_64.sh -b -p "$APPDIR"/usr/conda -f
8484
# activate environment
8585
. "$APPDIR"/usr/conda/bin/activate
8686

87-
# we don't want to use the system's conda RC file
88-
export CONDARC=/dev/null
87+
# we don't want to touch the system, therefore using a temporary home
88+
mkdir _temp_home
89+
export HOME=$(readlink -f _temp_home)
8990

9091
# conda-forge is used by many conda packages, therefore we'll add that channel by default
9192
conda config --add channels conda-forge

0 commit comments

Comments
 (0)