"python -m" venv code example
Example 1: "python -m venv venv"
$ python3 -m venv env
$ source env/bin/activate
Example 2: python venv
python3 -m venv /path/to/new/virtual/environment
$ python3 -m venv env
$ source env/bin/activate
python3 -m venv /path/to/new/virtual/environment