Skip to content

Instantly share code, notes, and snippets.

@mswell
Forked from henriquebastos/python-guide.sh
Last active July 9, 2020 17:41
Show Gist options
  • Save mswell/69a176e6975522f52f50e4caaafe6dd3 to your computer and use it in GitHub Desktop.
Save mswell/69a176e6975522f52f50e4caaafe6dd3 to your computer and use it in GitHub Desktop.
The definitive guide to setup my Python workspace
# The definitive guide to setup my Python workspace with ubuntu and ZSH
# Author: Henrique Bastos <henrique@bastos.net>
# Modified by Wellington Moraes <wellpunk@gmail.com>
PY3=3.8.3
PY2=2.7.18
PY3TOOLS="youtube-dl pytest nornir stormssh flake8 pylint requests virtualenvwrapper"
PY2TOOLS="rename"
VENVS=~/.ve
PROJS=~/Projects
# Install Pyenv
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
cat <<"EOT" >> $HOME/.zshrc
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
EOT
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
git clone https://github.com/pyenv/pyenv-virtualenv.git $(pyenv root)/plugins/pyenv-virtualenv
# All my virtualenvs are here...
mkdir -p $VENVS
# All my projects are here...
mkdir -p $PROJS
# Setup .zshrc
cat <<"EOT" >> $HOME/.zshrc
# Virtualenv-wrapper directories
export WORKON_HOME=~/.ve
export PROJECT_HOME=~/Projects
EOT
cat <<"EOT" >> $HOME/.zshrc
# Pyenv initialization
eval "$(pyenv init -)"
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi
EOT
# Initialize pyenv
eval "$(pyenv init -)"
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi
# Install Python versions
pyenv install $PY3
pyenv install $PY2
# Prepare virtual environments
pyenv virtualenv $PY3 jupyter38
pyenv virtualenv $PY3 tools38
pyenv virtualenv $PY2 ipython27
pyenv virtualenv $PY2 tools27
~/.pyenv/versions/$PY3/bin/pip install --upgrade pip
~/.pyenv/versions/$PY2/bin/pip install --upgrade pip
~/.pyenv/versions/jupyter38/bin/pip install --upgrade pip
~/.pyenv/versions/tools38/bin/pip install --upgrade pip
~/.pyenv/versions/ipython27/bin/pip install --upgrade pip
~/.pyenv/versions/tools27/bin/pip install --upgrade pip
# Install Jupyter
~/.pyenv/versions/jupyter38/bin/pip install jupyter
~/.pyenv/versions/jupyter38/bin/python -m ipykernel install --user
~/.pyenv/versions/jupyter38/bin/pip install jupyter_nbextensions_configurator rise
~/.pyenv/versions/jupyter38/bin/jupyter nbextensions_configurator enable --user
# Install Python2 kernel
~/.pyenv/versions/ipython27/bin/pip install ipykernel
~/.pyenv/versions/ipython27/bin/python -m ipykernel install --user
# Install Python3 Tools
~/.pyenv/versions/tools38/bin/pip install $PY3TOOLS
# Install virtualenvwrapper
~/.pyenv/versions/tools38/bin/pip install virtualenvwrapper
cat <<"EOT" >> $HOME/.zshrc
# Virtualenv Wrapper initialization
export VIRTUALENVWRAPPER_PYTHON=$(which python3)
source ~/.pyenv/versions/tools38/bin/virtualenvwrapper.sh
EOT
# Install Python2 Tools
~/.pyenv/versions/tools27/bin/pip install $PY2TOOLS
# Protect lib dir for global interpreters
chmod -R -w ~/.pyenv/versions/$PY2/lib/
chmod -R -w ~/.pyenv/versions/$PY3/lib/
# Setup path order
pyenv global $PY3 $PY2 jupyter38 ipython27 tools38 tools27
# Check everything
pyenv which python | grep -q "$PY3" && echo "✓ $PY3"
pyenv which python2 | grep -q "$PY2" && echo "✓ $PY2"
pyenv which jupyter | grep -q "jupyter38" && echo "✓ jupyter38"
pyenv which ipython | grep -q "jupyter38" && echo "✓ ipython"
pyenv which ipython2 | grep -q "ipython27" && echo "✓ ipython27"
pyenv which youtube-dl | grep -q "tools38" && echo "✓ tools38"
pyenv which rename | grep -q "tools27" && echo "✓ tools27"
echo "Done! Restart the terminal."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment