This is quite dated. The preferred way to invoke virtualenv (venv as it known these days) is through python itself:-
python -mvenv myenv
I wrote some more on virtualenv, such as why using source bin/activate not advised for beginner here:-
blog.xoxzo.com/2020/05/09/making-sense-python-env…
Kamal Mustafa
This is quite dated. The preferred way to invoke virtualenv (venv as it known these days) is through python itself:-
python -mvenv myenvI wrote some more on virtualenv, such as why using
source bin/activatenot advised for beginner here:-blog.xoxzo.com/2020/05/09/making-sense-python-env…