Skip to main content

Easy way to use virtualenv.

Project description

https://pypip.in/d/ven/badge.png https://pypip.in/v/ven/badge.png https://pypip.in/license/ven/badge.png

Easy way to use virtualenv.

Features

  • Store virtualenv in .venv directory, along with your .git and requirements.txt

  • Run command inside virtualenv without activating it.

Install

$ pip install --user ven

Quickstart

Initialize an empty virtualenv using ven init:

$ ven init
New python executable in .venv/bin/python
Installing setuptools, pip...done.

$ ls -A
.venv

Run command inside virtualenv using ven run:

$ ven run which python
~/project/.venv/bin/python

Activate virtualenv in a sub-shell:

$ ven run
$ which python
~/project/.venv/bin/python
$ (Deactivate with Ctrl-D)

Usage

Usage: ven [OPTIONS] COMMAND [ARGS]...

  Easy way to use virtualenv

Options:
  --version  Show the version and exit.
  --help     Show this message and exit.

Commands:
  help  Show help information
  init  Create a new virtualenv
  run   Run command in virtualenv (default: shell)

Caveats

Use ‘–’ to separate ven run options and command that contains ‘-‘:

$ ven run -- python --version
Python 2.7.5

oh-my-zsh overwrites $PATH, add the following to your .zshrc:

if [ -n "$VIRTUAL_ENV" ]; then
    export PATH="$VIRTUAL_ENV/bin:$PATH"
fi

Recommanded aliases:

alias vrun='ven run --'
alias vpy='ven run -- python'
alias vpip='ven run -- pip'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ven-0.4.1.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

ven-0.4.1-py2.py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page