From daf5eaa83f41a7d764f076c74d642d0c32964bab Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Wed, 10 Jan 2024 19:28:12 +0100 Subject: [PATCH] further anaconda compatibility settings --- Anaconda/.condarc | 6 +++++- bash/.bashrc | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Anaconda/.condarc b/Anaconda/.condarc index 64329fa..ff498b9 100644 --- a/Anaconda/.condarc +++ b/Anaconda/.condarc @@ -1 +1,5 @@ -auto_activate_base: false \ No newline at end of file +auto_activate_base: false +channels: + - conda-forge + - defaults +channel_priority: strict diff --git a/bash/.bashrc b/bash/.bashrc index 5fe2a67..5367b0a 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -152,3 +152,6 @@ cdls() { cd "$@"&&ls;} #cdvim to cd into the directory of a file and open the file in vim cdvim(){ cd "$(dirname "$@")" && vim "$(basename "$@")";} # <<< cd shortcuts <<< + +# anaconda +source /opt/anaconda/etc/profile.d/conda.sh