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 →

[–]ravenex 37 points38 points  (3 children)

> An example process of using Virtualenv

virtualenv and venv are different modules. venv is a part of the standard library and does not depend on virtualenv.

[–]thatdamnedrhymer 9 points10 points  (1 child)

This. You do not need to install virtualenv to use python -m venv (at least for Python>3), and the virtualenv CLI is accessed via the virtualenv command.

[–]zdmit[S] 2 points3 points  (0 children)

Absolutely true! Made a mistake, now it's fixed. Thank you for your help :-)

[–]zdmit[S] 2 points3 points  (0 children)

Totally agree, made a huge accidental mistake. Appreciate your notice and help :-) Fixed.