• 9663920875
  • leo@leonardtopno.com
  • Bengaluru, India
How to install and create Virtual Environment in Windows

How to install and create Virtual Environment in Windows

Problem Statement: Installing virtual environment in Windows: 1. To install Virtual Environment, type the following in terminal:Syntax: pip3 install virtualenv You can check the version of the virtual environment installed by typing the following 2. To create Virtual Environment navigate to the folder where you wish to create Virtual Environment and type:Syntax: python -m virtualenv <name-of-the-virtual-environment> or virtualenv<name-of-the-virtual-environment> 2. To…