Question 01: What is a Virtual Environment
Answer: A virtual environment is a Python environment such that the Python interpreter, libraries and scripts installed into it are isolated from those installed in other virtual environments, and (by default) any libraries installed in a “system” Python, i.e., one which is installed as part of your operating system.
---------------------------------------------------------------
Question 02: How to locate the current path of virtual environment? (click here)
Answers:
In command prompt: type python (Enter)
>>> import sys
>>> for p in sys.path:
... print(p)
---------------------------------------------------------------
Question 03: Where can I find more information about Virtual Environment
Answers: FInd the link here.
---------------------------------------------------------------
Question 04: How can I create an Environment
Answer: In the command prompt, do the following
conda create --name XAI
conda activate XAI
create conda
---------------------------------------------------------------
Question 05: How can I see all the list of environemnts?
Answer: conda env list
---------------------------------------------------------------
Question 06: How can I clone and environment
Answers:
conda create --clone base --name XAI2