What is a virtual Environment
Do you ask yourself what is a virtual environment and why are all developers use it all the time? Well, that is why I am here to clear all the skepticism.
What is a Virtual Environment?
A virtual environment is a tool that helps keep the required dep...
tijan.hashnode.dev5 min read
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…