In this post I will try to share how you can start to create a project with virtual environment for Python 3.
Get An Code Editor or
IDE, I will suggest you to use VS Code because it's good for beginners.
Install Python 3 Programming Language.
Create a Virtual Environment
Open Any Terminal and run below command.
python -m venv venv
Activate the Virtual Environment.
For Linux Based OS Or Mac-OS.
source venv/bin/activate
For Windows With CMD.
.\venv\Scripts\activate.bat
For Windows With Power shell.
.\venv\Scripts\activate.ps1
For Windows With Unix Like Shells For Example
Git Bash CLI
.
source venv/Scripts/activate
if any issue occurred while activating virtual environment on windows then go to below post.
Top comments (3)
Nice and simple.
great to see how to create a py enviroment, also i want to add, in vscode is an extension to manage created env's
Thanks Buddy