Open cs01 opened 4 years ago
python3
on many Linux releases.py -3 -m venv …
on Windows.py
instructions for windows--no-site-packages
is the default and deprecated for a long time now – actually so long it now disappeared from the newest releases. The --system-site-packages
option has to be described instead.
This is ready for another review
Now that the
venv
module is part of the standard library for all non-EOL'd Python versions, the instructions can be simplified to usevenv
rather thanvirtualenv
.This PR replaces mentions of
virtualenv
withvenv
everywhere but the section that refers users tovirtualenv
if they are using an older Python version.virtualenv
-related tools were removed.