Source: 📖 Effective Python item 83
venv
to create a virtual environmentWithin the command line, you can navigate to a directory and use the venv
command to set up a new virtual environment.
$ python3 -m venv myproject
$ cd myproject
$ ls
bin include lib pyvenv.cfg