dmenv: the stupid virtualenv manager

Build

Installation

The easiest way is to download the matching binary from the releases page for your platform and put it somewhere on in your $PATH.

For instance:

console cd ~/.local/bin curl --fail -L https://github.com/TankerHQ/dmenv/releases/download/v0.6.0/dmenv-$PLATFORM -o dmenv chmod u+x dmenv

Note: replace $PLATFORM by your current platform: linux, osx or windows.

If you prefer, you can also install rust and install dmenv with cargo install dmenv.

Setup

First, dmenv needs a Python3 interpreter in PATH, which should be called python or python3. This should already be the case if you've just installed Python3, regardless of your operating system.

Second, dmenv needs a setup.py file to work.

And that's it. Now you are ready to use dmenv!

Here's a description of the main commands:

dmenv lock

Here's what dmenv lock does:

Now you can add the requirements.lock file to your version control system.

This leads us to the next command.

dmenv install

Now that the complete list of dependencies and their versions is written in the requirements.lock file, anyone can run dmenv install to install all the dependencies and get exactly the same versions you got when you ran dmenv lock.

Hooray reproducible builds!

dmenv run

As a convenience, you can use:dmenv run to run any binary from the virtualenv. If the program you want to run needs command-line options, use a -- to separated them from dmenv options, like so:

console dmenv run -- pytest --collect-only

dmenv upgrade-pip

Tired of pip telling you to upgrade itself? Run dmenv upgrade-pip :)

It's exactly the same as typing dmenv run -- python -m pip install --upgrade pip, but with less keystrokes :P

Using an other python interpreter

To use an other Python interpreter than the one in PATH, you can either:

FAQ

Q: How do I upgrade a dependency?
A: Just run dmenv lock again. If something breaks, either fix your code or use more precise version specifiers in setup.py, like foobar < 2.0.

Q: How do I depend on a git specific repo/branch?
A: Edit the requirements.lock by hand like this:

foo==0.1 https://gitlab.com/foo/bar@my-branch

Q: But that sucks and it will disappear when I re-run dmenv lock!
A: See #7. We are looking for a proper solution. In the mean time, feel free to:

Q: Why Rust?
A: