• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
PythonForBeginners.com

PythonForBeginners.com

Learn By Example

  • Home
  • Python Tutorial
  • Python Basics
  • Python Code Examples


You are here: Home / Basics / How to use Python virtualenv

How to use Python virtualenv

Last Updated: May 25, 2020

What is Virtualenv?

A Virtual Environment, put simply, is an isolated working copy of Python which
allows you to work on a specific project without worry of affecting other projects

It enables multiple side-by-side installations of Python, one for each project.

It doesn’t actually install separate copies of Python, but it does provide a
clever way to keep different project environments isolated.

Verify if Virtualenv is installed

There is a chance that virtualenv is already installed on your system.

Run the following command in your terminal

virtualenv --version

If you see a version number (in my case 1.6.1), it’s already installed.
>>1.6.1

Install Virtualenv

There are a number of ways to install virtualenv on your system.

$ sudo apt-get install python-virtualenv

$ sudo easy_install virtualenv

$ sudo pip install virtualenv

Setup and Use Virtualenv

Once you have virtualenv installed, just fire up a shell and create your own
environment.

First create a directory for your new shiny isolated environment

mkdir ~/virtualenvironment

To create a folder for your new app that includes a clean copy of Python,
simply run:

virtualenv ~/virtualenvironment/my_new_app

(add –no-site-packages if you want to isolate your environment from the main site
packages directory)

To begin working with your project, you have to cd into your directory (project)
and activate the virtual environment.

cd ~/virtualenvironment/my_new_app/bin

Lastly, activate your environment:

source activate

Notice how the prompt of your shell changed to show the active environment.

That is how you can see that you’re in your new environment.

Recommended Python Training

For Python training, our top recommendation is DataCamp.

Free Trial

Any packages you install now using pip or easy_install get installed into
my_new_app/lib/python2.7/site-packages.

To exit your virtualenv just type “deactivate”.

What did Virtualenv do?

Packages installed here will not affect the global Python installation.

Virtualenv does not create every file needed to get a whole new python environment

It uses links to global environment files instead in order to save disk space end
speed up your virtualenv.

Therefore, there must already have an active python environment installed on your
system.

Install a package in your Virtualenv

If you look at the bin directory in your virtualenv, you’ll see easy_install which
has been modified to put eggs and packages in the virtualenv’s site-packages
directory.

To install an app in your Virtualenv:

pip install flask

You don’t have to use sudo since the files will all be installed in the virtualenv
/lib/python2.7/site-packages directory which was created as your own user account

That’s it, I hope that you learned something from this post

For further reading, please see:
http://flask.pocoo.org/docs/installation/#virtualenv
http://pypi.python.org/pypi/virtualenv
Getting-started-with-virtualenv-isolated-python-environments/

Recommended Python Training

For Python training, our top recommendation is DataCamp.

Free Trial

Filed Under: Basics Date Originally Published: February 5, 2013

More Python Topics

API Basics Beautiful Soup bitly Cheatsheet Code Code Snippets Command Line crawler Data Types Development Dictionary Dictionary Data Structure In Python envoy Errorhandling Error Handling Exceptions Fabric Files fnmatch ftplib Games GUI Json Lists Loops Mechanzie Modules Modules In Python Mysql OS pil pip Python Python Code Snippets Python On The Web Python Strings Requests Scraping Scripts sh simplehttpserver System & OS urllib2 Web

Primary Sidebar

Get Our Free Guide To Learning Python

Menu

  • Python Basics
  • Code Examples
  • Loops
  • Functions
  • Strings
  • Python on the Web
  • Lists
  • Dictionaries
  • Python Modules
  • Python Glossary
  • Learn Python

Most Popular Content

  • Reading and Writing Files in Python
  • String Concatenation and Formatting
  • List Comprehensions in Python
  • How to use sys.argv in Python
  • How to use Split in Python
  • How to use comments in Python
  • Python Syntax Basics

Recent Posts

  • Datacamp Review 2020
  • Most Common Python Interview Questions For 2020
  • Python 2 Vs Python 3 with Examples
  • How To Run Your Python Scripts
  • The 5 Best Python IDE’s and Code Editors for 2019

Python Courses

  • Datacamp: Intro To Python
  • 2021 Complete Python Bootcamp
  • Python Mega Course: Build 10 Real World Apps
  • Python Data Science Bootcamp
  • Complete Python Developer: Zero to Mastery

Copyright © 2012–2021 · PythonForBeginners.com

  • Home
  • Contact Us
  • Privacy Policy
  • Write For Us