Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/milliams/vam
Virtualenv Application Manager
https://github.com/milliams/vam
Last synced: 19 days ago
JSON representation
Virtualenv Application Manager
- Host: GitHub
- URL: https://github.com/milliams/vam
- Owner: milliams
- Created: 2016-02-24T10:14:36.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2016-02-28T00:06:19.000Z (over 8 years ago)
- Last Synced: 2024-10-11T01:25:45.054Z (about 1 month ago)
- Language: Python
- Size: 35.2 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Virtualenv Application Manager
==============================Install Python applications into their own virtual environments automatically.
Have you ever tried to install two applications from PyPI which have conflicting requirements?
The usual answer to this is using virtualenvs which provide a sandboxed environment to install the packages into.
However, virtualenvs are not really designed for installing *applications* into,
they are designed for installing libraries into against which you write your application.``vam`` provides a way to install as many Python applications as you wish alongside each other without them interfering with in any way.
For example, running:
.. code-block:: bash
vam install pss
vam install pytestwill install each of these into their own virtualenvs so that any dependencies they have will not interfere.
A launcher script will be installed into ``~/.local/bin/`` to start any applications they may have installed.