Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 985 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 985 Bytes

dotfiles

Find here hard links to my linux environment configuration files

Tools stack

Language multiple version management

Other tools

  • Environment variables switcher: direnv
  • Run multiple processes through a procfile: forego
  • Lazy previous console commands execution: thefuck

Isolating python tools using pyenv

pyenv install 3.9.0
pyenv install 2.7.15

pyenv virtualenv 3.6.5 azure
pyenv activate azure
pip install azure-cli
pyenv deactivate

pyenv virtualenv 3.9.0 aws
pyenv activate aws
pip install awscli awscli s3cmd
pyenv deactivate

pyenv virtualenv 3.9.0 dev-tools
pyenv activate dev-tools
pip install thefuck
pyenv deactivate

pyenv global 3.9.0 dev-tools aws azure
pyenv rehash