This year I was able to attend AWS Re:invent 2018 in Las Vegas. There was a lot to take in from keynotes, sessions, workshops and the expo. Oh and there was tons and tons of walking from hotel to hotel. Key Takeaways Serverless is here to stay. With lots of new integrations and features to the […]
Author: aldomatic
Categories
Using Python Version Management: Pyenv
https://github.com/pyenv/pyenv Install via homebrew. Install multiple versions of python. You can also use this within a virtual environment. pyenv install 3.6.0 Add pyenv init to your shell to enable shims and autocompletion. Please make sure eval “$(pyenv init -)” is placed toward the end of the shell configuration file since it manipulates PATH during the initialization. […]