how to activate a virtual code example
Example 1: how to activate virtual environment in python
# for windows 10
py -m venv myvirtualenv
myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
Example 2: activate python virtual environment
# activate python enviroment with global packages
python -m venv env --system-site-packages