How to create and use virtual environment in Python on Windows 11 in 2026 #virtualenvironments

How to create and use virtual environment in Python on Windows 11 in 2026 #virtualenvironments

In this video of Joey'sTECH, I will show you how to create and activate a virtual environment in Python on Windows 11. Virtual Environment creates your own copy of python where you can install libraries specific to your project such that they don't mess with other projects. Steps to create a virtual environment - 1. Check the version of Python installed on Windows 11 by typing the command python --version (watch the video in the i button to install Python 3.14) 2. Create a folder in Windows 11 using command prompt 3. Create a virtual environment in Windows 11 using `python -m venv my_venv` 4. Activate the virtual environment in Windows 11 `my_venv\Scripts\activate` 5. deactivate the virtual environment by writing `deactivate` This video is loaded with information so make sure you watch this video till the end. Do subscribe to my channel Joey'sTECH in order to not miss out on tutorial videos and share this video with those who you think need it.