This tutorial will install:
- macOS with zsh
w.i.p....
w.i.p....
- Go to the folder of the project and create the virtual environment:
$ cd /my/path/of/my/project
$ python -m venv .venvThis command will create the folder
.venvinside the folder of the project with the version of the Python choosed.
- Activate the virtual environment:
$ source .venv/bin/activateCommands to execute inside virtual environment:
which pythonTo validate the location of virtual environment pythonpython --versionTo check the version of virtual environment pythondeactivateTo get out of the virtual environment