Top "Virtualenv" questions

virtualenv is a tool that creates sandboxed Python environments.

Is it bad to have my virtualenv directory inside my git repository?

I'm thinking about putting the virtualenv for a Django web app I am making inside my git repository for the …

python django virtualenv
How to avoid "Permission denied" when using pip with virtualenv

I attempt to deploy a Python package with pip in a virtual environment on an Ubuntu machine, but encounter a …

python virtualenv pip
How can I make a list of installed packages in a certain virtualenv?

You can cd to YOUR_ENV/lib/pythonxx/site-packages/ and have a look, but is there any convenient ways? pip …

virtualenv pip
Broken references in Virtualenvs

I recently installed a bunch of dotfiles on my Mac along with some other applications (I changed to iTerm instead …

python macos virtualenv homebrew dyld
pip installing in global site-packages instead of virtualenv

Using pip3 to install a package in a virtualenv causes the package to be installed in the global site-packages folder …

python macos virtualenv pip
Running python script from inside virtualenv bin is not working

I have a script I want to be available globally. I've started it with the standard hashbang: #! /usr/bin/env …

python virtualenv rundeck
Could not find a version that satisfies the requirement pytz

I have a problem installing pytz in virtualenv. Downloading/unpacking pytz Could not find a version that satisfies the requirement …

python pip virtualenv pytz
Make virtualenv inherit specific packages from your global site-packages

I'm looking for a way to make a virtualenv which will contain just some libraries (which i chose) of the …

python virtualenv
Activate a virtualenv with a Python script

I want to activate a virtualenv instance from a Python script. I know it's quite easy to do, but all …

python virtualenv
How do I add a path to PYTHONPATH in virtualenv

I am trying to add a path to the PYTHONPATH environment variable, that would be only visible from a particular …

python virtualenv