Python virtual environments
Python virtual environments
Posted Jun 19, 2018 15:57 UTC (Tue) by k8to (guest, #15413)In reply to: Python virtual environments by stevedower
Parent article: Python virtual environments
In my projects I typically just do manipulate sys.path to point to an included directory during startup of my main python file, which I find vastly simpler than all the package managers and environment variables in the world.
However, that's obviously not sufficient for some problems, so I salute modernizing sys.path setup.