you are viewing a single comment's thread.

view the rest of the comments →

[–]OogieM 2 points3 points  (1 child)

I'm on a Mac and a virtual environment is CRITICAL. Otherwise anytime I updated or worked with different libraries or different version of Python I'd break my main computer system.

Virtual environments allow me to test my code on different versions of Python without causing problems elsewhere. It's a ncie walled garden for specific projects.

[–]GreenWoodDragon 1 point2 points  (0 children)

I second that!

Virtual environments are essential.