VIRTUAL ENV
Virtualenv is a tool to create an isolated Python environment. In this post, we will learn how to setup virtualenv on ubuntu.
if you have pip
venv is a directory in which virtual environment will be created.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Virtualenv is a tool to create an isolated Python environment. In this post, we will learn how to setup virtualenv on ubuntu.
Prerequisite
- pip
Install Virtualenv
If you have pip3
sudo pip3 install virtualenv
sudo pip install virtualenv
Create a Virtualenv
virtualenv venv
Working with Virtualenv
source venv/bin/activate
Comments
Post a Comment