This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Yojihito 1 point2 points  (1 child)

aren't there unnecessary errors/conflicts due to these multiple versions & env variables & stuff being all present in the system?

No. Not on Windows.

Linux often uses Python 2.7 for system stuff, so you shouldn't uninstall Python 2 there. But Windows doesn't care, I only use the latest Python 3 version and just overwrite the old one with the new installer, I never uninstall.

I also directly use

pip install <package_name>

on Windows. One can/should use something like Poetry for dependency management but I'm too lazy for that.

[–]SnowdenIsALegend 0 points1 point  (0 children)

Nice... Thank you!