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