Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/burakyilmaz321/benv
A minimalistic Python virtual environment manager that no one needs.
https://github.com/burakyilmaz321/benv
python shell venv virtualenv
Last synced: 16 days ago
JSON representation
A minimalistic Python virtual environment manager that no one needs.
- Host: GitHub
- URL: https://github.com/burakyilmaz321/benv
- Owner: burakyilmaz321
- License: mit
- Created: 2019-10-28T17:44:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-16T15:14:16.000Z (almost 4 years ago)
- Last Synced: 2024-12-13T02:30:38.132Z (21 days ago)
- Topics: python, shell, venv, virtualenv
- Language: Python
- Size: 28.3 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# benv
A minimalistic Python virtual environment manager that no one needs.
![](https://github.com/burakyilmaz321/benv/workflows/Python%20package/badge.svg)
## Requirements
- Python >= 3.6
## Installation
Clone this repo
```bash
git clone [email protected]:burakyilmaz321/benv.git
```Source `benv.sh` in your `.bashrc`
```bash
# anywhere in ~/.bashrc
source /path/to/benv.sh
```## Usage
Create a home directory for environments
```bash
mkdir ~/.envs
```Export this folder's path as `BENV_HOME`
```bash
BENV_HOME=~/.envs
```There are four basic functions to call
- **mkenv** Create a new virtual environment
- **lsenv** List all existing virtual environments
- **chenv** Activate an existing virtual environment
- **rmenv** Remove a virtual environment## License
[MIT](https://choosealicense.com/licenses/mit/)