CodeNewbie Community 🌱

Shrikant Dhayje
Shrikant Dhayje

Posted on • Originally published at shriekdj.hashnode.dev on

How to create and Activate the Virtual Environment for Python3 project.

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
Enter fullscreen mode Exit fullscreen mode

Activate the Virtual Environment.

For Linux Based OS Or Mac-OS.

source venv/bin/activate
Enter fullscreen mode Exit fullscreen mode

For Windows With CMD.

.\venv\Scripts\activate.bat
Enter fullscreen mode Exit fullscreen mode

For Windows With Power shell.

.\venv\Scripts\activate.ps1
Enter fullscreen mode Exit fullscreen mode

For Windows With Unix Like Shells For Example Git Bash CLI.

source venv/Scripts/activate
Enter fullscreen mode Exit fullscreen mode

if any issue occurred while activating virtual environment on windows then go to below post.


Oldest comments (3)

Collapse
 
tmdev profile image
Andre Marti

great to see how to create a py enviroment, also i want to add, in vscode is an extension to manage created env's

Collapse
 
shriekdj profile image
Shrikant Dhayje

Thanks Buddy

Collapse
 
andrewbaisden profile image
Andrew Baisden

Nice and simple.