DEV Community

Discussion on: Modern Python setup for quality development

Collapse
 
kalobtaulien profile image
Kalob Taulien

Love this article! pyenv is the best for changing Python versions - until you need to change your Python paths for any reason (like if homebrew updates on a mac, for instance) then it becomes one of the biggest Python nightmares.

If anyone has ever run into that issue with Pyenv, try using Docker. You can use a slim Python image to keep it small, too.

Collapse
 
richarddevers profile image
Richard Devers

Thanks!