Created
January 28, 2020 03:09
-
-
Save CleitonDeLima/3f19e9e6a5ef2f3adde7f2307eec0d55 to your computer and use it in GitHub Desktop.
Install dependencies SO
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install deps | |
sudo apt install vim zsh tree postgresql redis-server redis curl wget git terminator xmlsec1 make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl | |
# oh-my-zsh | |
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# pyenv | |
curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash | |
git clone https://github.com/pyenv/pyenv-virtualenvwrapper.git $(pyenv root)/plugins/pyenv-virtualenvwrapper | |
# add in ~/.zshrc | |
""" | |
export PATH="/home/cleiton/.pyenv/bin:$PATH" | |
eval "$(pyenv init -)" | |
eval "$(pyenv virtualenv-init -)" | |
pyenv virtualenvwrapper_lazy | |
""" | |
# define terminator how default terminal | |
sudo update-alternatives --config x-terminal-emulator |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment