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: 3 months 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-16T15:14:16.000Z (over 4 years ago)
- Last Synced: 2025-03-11T13:47:56.738Z (4 months ago)
- Topics: python, shell, venv, virtualenv
- Language: Python
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- 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.

## 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/)