{"id":21768257,"url":"https://github.com/averms/vewrapper","last_synced_at":"2026-04-17T15:07:38.135Z","repository":{"id":114683914,"uuid":"166619604","full_name":"averms/vewrapper","owner":"averms","description":"Manage your Python 3 virtual environments in a convenient way","archived":false,"fork":false,"pushed_at":"2024-04-01T04:29:59.000Z","size":47,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-21T05:44:07.753Z","etag":null,"topics":["python","python3","venv","virtualenv","virtualenvwrapper"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/averms.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-20T03:36:20.000Z","updated_at":"2024-12-18T09:02:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"f2816f3b-2696-4b70-96cd-d43c513deb91","html_url":"https://github.com/averms/vewrapper","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/averms/vewrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/averms%2Fvewrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/averms%2Fvewrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/averms%2Fvewrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/averms%2Fvewrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/averms","download_url":"https://codeload.github.com/averms/vewrapper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/averms%2Fvewrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31933787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T12:37:54.787Z","status":"ssl_error","status_checked_at":"2026-04-17T12:37:25.095Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python","python3","venv","virtualenv","virtualenvwrapper"],"created_at":"2024-11-26T13:35:06.880Z","updated_at":"2026-04-17T15:07:38.118Z","avatar_url":"https://github.com/averms.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vewrapper\n\nA set of helper functions written in shell script that allow you to manage your Python 3\nvirtual environments in a convenient way.\n\n## Requirements\n\n- Python ≥ 3.5\n- Bash, Zsh (with `bashcompinit`), or Mksh (programmable completion doesn't work). It\n  uses some advanced features that more minimal shells don't support like `[[` and\n  [substring expansion].\n\n[substring expansion]: https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html#Shell-Parameter-Expansion\n\n## Installation\n\nSince the script simply exposes some global functions into your session, you can install\nit however you want — you just need to make sure that the file gets run on every shell\nstartup. Here are two options:\n\n- Copy `vewrapper.bash` anywhere onto your machine, then source it in your\n  `.bashrc`.\n\nOr\n\n- Copy the code in `vewrapper.bash` into your `.bashrc`.\n\nMake sure you use the latest release and **not** master.\n\n## Usage\n\nAll virtual environments are stored in `$VENV_HOME` folder. There is no default; you need\nto export a `VENV_HOME` variable before sourcing the script. It needs to be an absolute\npath (not symlinked), and it **can't end with a slash.** A good example would be:\n```\nexport VENV_HOME=\"$HOME/.local/venv\"\n```\nThe `VENV_rm` variable is the command used to remove virtual environments. You can set\nit to `rm -rf`, `gio trash` (default), `ktrash`, or whatever you want.\n\nAlso, don't put spaces in environment names. It breaks the autocompletion.\n\n### Commands\n\n#### `mkve [env-name]`\n\nCreates a python virtual environment at `$VENV_HOME/[env-name]`.\n\n#### `rmve [env-name]`\n\nDeletes the python virtual environment at `$VENV_HOME/[env-name]`. Press tab to\nautocomplete \\[env-name\\]\n\n#### `acve [env-name]`\n\nActivates the environment located at `$VENV_HOME/[env-name]`. Press tab to\nautocomplete \\[env-name\\]\n\n#### `upve [env-name]`\n\nUpdates the environment located at `$VENV_HOME/[env-name]` to the latest system python.\nPress tab to autocomplete \\[env-name\\].\n\nThis will not update the packages, so if some are not compatible with newer versions of\nPython, you will have to update them with `pip`.\n\n#### `lsve`\n\nProvides a list of environment names currently stored in `$VENV_HOME`.\n\n## Authors\n\n- **Aman Verma** - [averms](https://github.com/averms)\n- **Christopher Sabater Cordero** - [cs-cordero](https://github.com/cs-cordero)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faverms%2Fvewrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faverms%2Fvewrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faverms%2Fvewrapper/lists"}