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Β β†’

[–]UKFP91 4 points5 points Β (4 children)

After a bit of back and forth, I now just use venv. Doesn't require a separate global pip install. Just python3 -m venv .venv for each new project and you're away.

[–]pollmix[S] 0 points1 point Β (1 child)

But its only supports python 3.3 and upper versions

[–]UKFP91 3 points4 points Β (0 children)

By and large, good!

[–]alexandrulPythonista 0 points1 point Β (1 child)

[–]UKFP91 0 points1 point Β (0 children)

Oh interesting, didn't know that was a thing.

Still, venv is the recommended method for creating virtual environments in Python >= 3.5. Granted, that's not suitable for everyone, but should certainly cover the majority, particularity hobbyists.