virtualenv icon
virtualenv icon

virtualenv

 4 likes

A tool for creating isolated virtual python environments.

License model

  • FreeOpen Source

Country of Origin

  • US flagUnited States

Platforms

  • Mac
  • Windows
  • Linux
  No rating
4likes
0comments
0alternatives
0news articles

Features

Suggest and vote on features
No features, maybe you want to suggest one?

 Tags

  • isolate
  • Python
  • environment
  • virtual-python-environment

virtualenv News & Activities

Highlights All activities

Recent activities

No activities found.

virtualenv information

AlternativeTo Category

Development

GitHub repository

  •  4,934 Stars
  •  1,058 Forks
  •  44 Open Issues
  •   Updated Jul 7, 2025 
View on GitHub

Our users have written 0 comments and reviews about virtualenv, and it has gotten 4 likes

virtualenv was added to AlternativeTo by sirre on Mar 4, 2011 and this page was last updated Jul 14, 2024.
No comments or reviews, maybe you want to be first?
Post comment/review

What is virtualenv?

Virtualenv is a tool to create isolated Python environments.

The basic problem being addressed is one of dependencies and versions, and indirectly permissions. Imagine you have an application that needs version 1 of LibFoo, but another application requires version 2. How can you use both these applications? If you install everything into /usr/lib/python2.4/site-packages (or whatever your platform's standard location is), it's easy to end up in a situation where you unintentionally upgrade an application that shouldn't be upgraded.

Official Links