how to create a pyhton virtual environment in hyper terminal code example
Example 1: create a venv
# Create the virtual environment.
python -m venv venv
# Activate the env.
venv\Scripts\activate.bat
Example 2: virtual environments for python
python3 -m venv tutorial-env