How to create virtual environment in python VScode on windows 11
YOUR LINK HERE:
http://youtube.com/watch?v=vkJlFPzQwt8
Virtual environments are isolated environment that allows developers to work on multiple projects with different dependencies, because the virtual environment ensures that each project has its own set of dependencies that will not conflict with those of other projects.In python, virtual environments are created using built -in venv module, which creates a directory with a specific structure that contains a copy of the python interpreter, as well as other necessary files • • • after running command pip install virtualenv if virtualenv myenv dose not work then try with python -m venv myenv • • • ♦️ subscribe my channel @codespider148 • #python #development #programmingtutorial #coding #virtualenvironment
#############################
