mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
install miniconda
This commit is contained in:
13
install.sh
13
install.sh
@@ -25,9 +25,18 @@ else
|
|||||||
echo "Powerlevel9k already exists."
|
echo "Powerlevel9k already exists."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# linking base stuff
|
# Conda
|
||||||
|
if [ ! -d "$HOME/conda" ]; then
|
||||||
|
echo "Installing Conda"
|
||||||
|
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /tmp/miniconda.sh
|
||||||
|
bash /tmp/miniconda.sh -b -p ~/conda
|
||||||
|
rm /tmp/miniconda.sh
|
||||||
|
else
|
||||||
|
echo "Conda already installed"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# linking dotfiles
|
||||||
$HOME/.dotfiles/dotfiles.sh link base
|
$HOME/.dotfiles/dotfiles.sh link base
|
||||||
|
|
||||||
# TODO install anaconda
|
|
||||||
# TODO install fasd
|
# TODO install fasd
|
||||||
# TODO install marker
|
# TODO install marker
|
||||||
@@ -13,7 +13,7 @@ export BAT_PAGER='less'
|
|||||||
|
|
||||||
# Path
|
# Path
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
export PATH="$HOME/anaconda3/bin:${PATH}" # binaries
|
export PATH="$HOME/conda/bin:${PATH}" # binaries
|
||||||
export PATH="$HOME/bin:${PATH}" # binaries
|
export PATH="$HOME/bin:${PATH}" # binaries
|
||||||
export PATH="$HOME/scripts:${PATH}" # scripts
|
export PATH="$HOME/scripts:${PATH}" # scripts
|
||||||
export PATH="$HOME/.local/bin:${PATH}" # python executeables
|
export PATH="$HOME/.local/bin:${PATH}" # python executeables
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ export ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim
|
|||||||
[[ -s ${ZIM_HOME}/init.zsh ]] && source ${ZIM_HOME}/init.zsh
|
[[ -s ${ZIM_HOME}/init.zsh ]] && source ${ZIM_HOME}/init.zsh
|
||||||
|
|
||||||
# source other dotfiles
|
# source other dotfiles
|
||||||
source "$HOME/.environment"
|
source $HOME/.environment
|
||||||
if [ -f "$HOME/.environment.local" ]; then
|
if [ -f "$HOME/.environment.local" ]; then
|
||||||
source "$HOME/.environment.local"
|
source $HOME/.environment.local
|
||||||
fi
|
fi
|
||||||
|
|
||||||
source ".aliases"
|
source ".aliases"
|
||||||
|
|||||||
Reference in New Issue
Block a user