Bash helpers for navigating and managing Python VirtualEnvs.
Project description
At its core, envie is a set of Bash functions aiming to increase your productivity when dealing with mundane VirtualEnv tasks, like: creating, destroying, listing, switching and activating environments.
But envie really shines when it comes to auto-discovery and auto-activation of VirtualEnvs relevant to your project (or executable). Just say:
~/work/projectx$ envie manage.py migrate ~/work/projecty$ envie python tests.py ~$ envie python playground/plucky/tests/tests.py
or use it in a hash bang:
#!/usr/bin/env envie import os print(os.getenv("VIRTUAL_ENV")) # test we're running in project env
or, just import it at the beginning of your Python program:
#!/usr/bin/python import envie.require
and in each of these cases the Python script will be executed in the closest virtual environment (for the definition of the closest environment see below, section Change/activate environment).
Summary
mkenv [-p <pyexec>] [-2|-3] [<env>] -- [virtualenv opts] - Create virtualenv in <env> based on Python version <pyexec>.
rmenv - Destroy the active environment.
chenv [-1] [-q] [-v] - Interactively activate the closest environment (looking down, then up, with lsupenv).
lsenv [-f|-l] [<dir>|"." [<avoid>]] - List all environments below <dir> directory, skipping <avoid> subdir.
lsupenv [-f|-l] [<dir>|"."] - Find the closest environments by first looking down and then dir-by-dir up the tree, starting with <dir>.
cdenv - cd to the base dir of the currently active virtualenv ($VIRTUAL_ENV).
envie - Activate the closest virtual environment (if unambiguous).
envie python <script>, envie <script> - Run python script in the closest virtual environment.
envie run <command> - Execute arbitrary command/builtin/file/alias/function in the closest virtual environment.
envie go [<keywords>] - Activate the closest environment, optionally filtered by list of <keywords>.
envie index - (Re-)index virtual environments (for faster searches with locate).
envie config - Interactively configure envie.
Install
For convenience, envie is packaged and distributed as a Python package. To install, simply type:
$ sudo pip install envie $ envie config # start clean $ . ~/.bashrc # or, open a new shell
The second line above will run a short configuration/setup procedure. If in doubt, go with the defaults.
By default, envie sourcing statement is added to your .bashrc file, locate index is set as a preferred source (it’s set to be rebuilt every 15m, or on demand), with all relevant environments’ ancestor dir set to your $HOME directory.
Examples
Create/destroy
To create a new VirtualEnv in the current directory, just type mkenv <envname>. This results with new environment created and activated in ./<envname>. When done with this environment, just type rmenv to destroy the active env.
stevie@caracal:~/demo$ ls stevie@caracal:~/demo$ mkenv env Creating python environment in 'env'. Using Python 2.7.9 (/usr/bin/python). (env)stevie@caracal:~/demo$ ls env (env)stevie@caracal:~/demo$ pip freeze argparse==1.2.1 wsgiref==0.1.2 (env)stevie@caracal:~/demo$ rmenv stevie@caracal:~/demo$ ls stevie@caracal:~/demo$
Change/activate environment
Use chenv to activate the closest environment, tree-wise. We first look down the tree, then up the tree. If a single Python environment is found, it’s automatically activated. In case the multiple environments are found, a choice is presented to user.
stevie@caracal:~/demo$ ls -F env/ project/ file1 file2 ... stevie@caracal:~/demo$ chenv (env)stevie@caracal:~/demo$
Assume the following tree exists:
~/demo |_ project1 | |_ env | | |_ ... | |_ src | |_ ... |_ project2 | |_ env | |_ ...
Now, consider you work in ~/demo/project1/src/deep/path/to/module, but keep the environment in the env parallel to src. Instead of manually switching to env and activating it with something like source ../../../../../env/bin/activate, just type chenv (cde<TAB> should actually do it, if you use tab completion):
stevie@caracal:~/demo/project1/src/deep/path/to/module$ chenv (env)stevie@caracal:~/demo/project1/src/deep/path/to/module$ which python /home/stevie/demo/project1/env/bin/python
On the other hand, if there are multiple environments to choose from, you’ll get a prompt:
stevie@caracal:~/demo$ chenv 1) ./project1/env 2) ./project2/env #? 2 (env)stevie@caracal:~/demo$ which python /home/stevie/demo/project2/env/bin/python
Search/list environments
To search down the tree for valid Python VirtualEnvs, use lsenv. Likewise, to search up the tree, level by level, use lsupenv. chenv uses lsupenv when searching for environment to activate.
Enable faster search
By default, envie uses the find command to search for environments. That approach is pretty fast when searching shallow trees. However, if you have a deeper directory trees, it’s often faster to use a pre-built directory index (i.e. the locate command). To enable a combined locate/find approach to search, run:
$ envie init Indexing environments in '/home/stevie'...Done.
In the combined approach, if find doesn’t finish within 400ms, search via find is aborted and locate is allowed to finish (faster).
To re-index environments, run:
$ envie update
To force find or locate, use -f and -l flags of lsenv.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file envie-0.4.12.tar.gz
.
File metadata
- Download URL: envie-0.4.12.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca6a33bac5e56dcea5026d3202b7a01fcc57afa1ca7019d0f771ba1fabe7571c |
|
MD5 | bd119e9841406f9e8dcfeb5d04271a6b |
|
BLAKE2b-256 | 73598d87c151a549c9e005f73e542998225db459a9043dc860d5d2a13bfb2d7d |
File details
Details for the file envie-0.4.12-py2.py3-none-any.whl
.
File metadata
- Download URL: envie-0.4.12-py2.py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcf114a554e89fc34120e3180d0dd1a6101734581ba320cc4196339b83d27de7 |
|
MD5 | 3f86e26276346948b38c16ed2f725403 |
|
BLAKE2b-256 | 38092cc1a419732940695ae9ddad99b0512de12a5d9ff1b9eac9f8f734535690 |