Answer:
Well, a virtual environment is just a directory with three important components: 1 A site-packages/ folder where third party libraries are installed. 2 Symlinks to Python executables installed on your system. 3 Scripts that ensure executed Python code uses the Python interpreter and site packages installed inside the given virtual environment.
Step-by-step explanation: