mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
666 B
19 lines
666 B
7 years ago
|
#!/bin/bash -
|
||
|
set -o nounset # Treat unset variables as an error
|
||
|
|
||
|
# install
|
||
|
sudo apt-get install zsh
|
||
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
||
5 years ago
|
chsh -s $(which zsh)
|
||
7 years ago
|
|
||
|
# pyenv
|
||
|
curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
|
||
|
|
||
6 years ago
|
# pyenv required
|
||
|
sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev \
|
||
|
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
|
||
|
xz-utils tk-dev libffi-dev liblzma-dev python-openssl
|
||
|
|
||
5 years ago
|
# zeal
|
||
|
sudo add-apt-repository -y ppa:zeal-developers/ppa
|