

I will occasionally write posts on medium, check out the latest one.
AWS Amplify Console and Triggering a Build from an API Endpoint


I will occasionally write posts on medium, check out the latest one.
AWS Amplify Console and Triggering a Build from an API Endpoint
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.
I will continue to update this list as I go through my notes. I will also try and provide some examples of things.
https://github.com/pyenv/pyenv
Install via homebrew.
|
1 2 |
brew update brew install pyenv |
Install multiple versions of python. You can also use this within a virtual environment. pyenv install 3.6.0
|
1 2 |
pyenv install 3.5.0 pyenv install 2.7.10 |
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.
|
1 |
eval "$(pyenv init -)" |
To check versions installed:
|
1 |
pyenv versions |
Helpful resources.
© 2019 Aldomatic
Theme by Anders Noren — Up ↑