Check out Adobe Fonts.
brew tap caskroom/fonts && brew cask install font-source-code-pro
We never want to use the system Python, nor do we want to mess around with it. Instead, we want to install a separate version of python for our own development. Easy way is to use pyenv
brew install pyenvInstall python.
# or
pyenv install <version-of-python>
pyenv install 3.9.0 List installed versions.
pyenv versionsAs per the instructions in https://realpython.com/intro-to-pyenv/, add the following to ~/.bashrc: or ~/.zshrc
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"To set the Python version
pyenv global 3.0.9 // global version
pyenv local 3.0.9 // local versionUse Jenv to manage versions of Java.
If using Bash check out https://github.com/ohmybash/oh-my-bash and the https://github.com/romkatv/powerlevel10k theme.
If using Zsh check out https://github.com/ohmyzsh/ohmyzsh and enable the Powerline theme via the oh-my-bash config in .bashrc