Python Virtual Environment Tutorial (Windows 10)

1K views Dec 11, 2024

How to create, and manage a Python virtual environment in Windows -- everything a new Python programmer needs to know. šŸ‘ Subscribe for more: https://bit.ly/3lLybeP šŸ‘‰ Follow along: https://analyzingalpha.com/blog/python-installation-windows-10 Virtual Environment Cheat Sheet - Create: python -m venv venv - Activate: venv\Scripts\activate.bat - Listing: pip list - Saving: pip freeze (greater than symbol) requirements.txt - Restoring: pip install -r requirements.txt - Deactivating: deactivate 0:00 Introduction 0:25 What Are Virtual Environments? 2:40 Virtual Environment Command Cheat Sheet 3:00 Check if Python is Installed with Version 3:22 Create a Virtual Environment 4:12 Activate Windows Virtual Environment 4:36 List Packages in Virtual Environment


View Video Transcript
#Computer Education
#Programming
#Software Utilities