Topic 1 -- Python for Gen AI
Topic 1 -- Python for Gen AI
1. venv is specifically our environment name and which python version we are
specifically using.
2. whenever we create environment some packages or libraries will be automatically
downloaded by this conda command
3. So whatever basic environment that is required for any python project that will
be covered up inside this particular folder.
== > 3. Using Conda -- Install Anaconda first -- > add path into system variables
1. Run conda command to check if it's install or not properly
2. %path% run this command
3. create virtual environment -- > conda create -p venv python==3.12 -y