2021-02-24 09:41:03 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
script=$(readlink -f "$0")
|
|
|
|
script_dir=$(dirname "$script")
|
|
|
|
echo "script-directory: $script_dir"
|
|
|
|
|
|
|
|
cp ${script_dir}/tmux.conf ~/.tmux.conf
|
|
|
|
cp ${script_dir}/vimrc ~/.vimrc
|
2021-04-02 05:36:41 +02:00
|
|
|
cp ${script_dir}/bashrc ~/.bashrc
|
2021-05-16 13:56:09 +02:00
|
|
|
cp ${script_dir}/condarc ~/.condarc
|
2021-02-24 09:41:03 +01:00
|
|
|
|
|
|
|
wget https://repo.anaconda.com/miniconda/Miniconda3-4.7.12.1-Linux-x86_64.sh
|
2021-04-03 06:28:26 +02:00
|
|
|
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
|
2021-05-26 05:24:41 +02:00
|
|
|
wget https://repo.anaconda.com/archive/Anaconda3-2021.05-Linux-x86_64.sh
|