2022-12-20 14:29:21 -06:00
|
|
|
<div align="center">
|
|
|
|
<a href="https://github.com/daylinmorgan/viv">
|
2023-05-26 19:13:23 -05:00
|
|
|
<img src="https://raw.githubusercontent.com/daylinmorgan/viv/main/assets/logo.svg" alt="Logo" width=500 >
|
2022-12-20 14:29:21 -06:00
|
|
|
</a>
|
|
|
|
<p align="center">
|
2023-06-02 14:08:54 -05:00
|
|
|
<h1> viv isn't venv </h1>
|
2022-12-20 14:29:21 -06:00
|
|
|
</p>
|
2023-06-02 14:08:54 -05:00
|
|
|
<div align="center">
|
|
|
|
<img
|
|
|
|
src="https://raw.githubusercontent.com/daylinmorgan/viv/main/docs/svgs/viv-help.svg"
|
|
|
|
alt="cli screenshot"
|
|
|
|
width="500"
|
|
|
|
>
|
|
|
|
</div>
|
2023-06-01 00:04:02 -05:00
|
|
|
<p align="center">
|
|
|
|
<a href="https://viv.dayl.in">Documentation</a>
|
|
|
|
</p>
|
2022-12-20 14:29:21 -06:00
|
|
|
</div>
|
2023-05-28 18:45:47 -05:00
|
|
|
|
2023-05-29 14:02:50 -05:00
|
|
|
Try before you buy!
|
|
|
|
```sh
|
2023-05-31 10:54:53 -05:00
|
|
|
python3 <(curl -fsSL viv.dayl.in/viv.py) run pycowsay -- "viv isn't venv\!"
|
2023-05-29 14:02:50 -05:00
|
|
|
```
|
2023-03-09 14:58:01 -06:00
|
|
|
---
|
|
|
|
|
|
|
|
`Viv` is a standalone dependency-free `venv` creator.
|
|
|
|
|
2023-06-02 11:53:42 -05:00
|
|
|
`Viv`'s uncompromising insistence on portability means that it will always:
|
2023-03-09 14:58:01 -06:00
|
|
|
|
2023-06-02 11:53:42 -05:00
|
|
|
1. only use the standard library
|
|
|
|
2. never exceed a single script.
|
2023-05-28 18:36:41 -05:00
|
|
|
|
|
|
|
For that reason any usage of the `CLI` can be accomplished using a remote copy as seen in the below install command.
|
|
|
|
|
2022-12-19 23:17:43 -06:00
|
|
|
## Setup
|
2022-12-20 10:21:42 -06:00
|
|
|
|
2023-05-26 19:13:23 -05:00
|
|
|
Run the below command to install `viv`.
|
2022-12-20 10:21:42 -06:00
|
|
|
|
|
|
|
```sh
|
2023-05-31 10:54:53 -05:00
|
|
|
python3 <(curl -fsSL viv.dayl.in/viv.py) manage install
|
2022-12-20 10:21:42 -06:00
|
|
|
```
|
|
|
|
|
2023-05-26 19:13:23 -05:00
|
|
|
To access `viv` from within scripts you should add it's location to your `PYTHONPATH`.
|
|
|
|
By default `viv` will be installed to `$XDG_DATA_HOME/viv` or `~/.local/share/viv` you can customize this with `--src`.
|
2022-12-19 23:17:43 -06:00
|
|
|
|
|
|
|
```sh
|
2023-05-26 19:13:23 -05:00
|
|
|
export PYTHONPATH="$PYTHONPATH:$HOME/.local/share/viv"
|
2022-12-19 23:17:43 -06:00
|
|
|
```
|
|
|
|
|
2023-03-08 03:43:07 -06:00
|
|
|
### Pypi (Not Recommended)
|
2022-12-19 23:17:43 -06:00
|
|
|
|
2023-03-08 03:43:07 -06:00
|
|
|
```sh
|
|
|
|
pip install viv
|
2022-12-19 23:17:43 -06:00
|
|
|
```
|
|
|
|
|
2023-03-09 14:58:01 -06:00
|
|
|
Why is this *not recommended*? Mainly, because `viv` is all about hacking your `sys.path`.
|
|
|
|
Placing it in it's own virtual environment or installing in a user site directory may complicate this endeavor.
|
|
|
|
|
2022-12-19 23:17:43 -06:00
|
|
|
## Usage
|
|
|
|
|
2023-03-09 14:58:01 -06:00
|
|
|
In any python script with external dependencies you can add this line,
|
|
|
|
to automate `vivenv` creation and installation of dependencies.
|
2023-03-08 03:43:07 -06:00
|
|
|
|
|
|
|
```python
|
2023-03-15 13:16:09 -05:00
|
|
|
__import__("viv").use("click")
|
2023-03-08 03:43:07 -06:00
|
|
|
```
|
|
|
|
|
2023-05-26 19:13:23 -05:00
|
|
|
To remove all `vivenvs` you can use the below command:
|
2023-03-09 14:58:01 -06:00
|
|
|
|
2022-12-19 23:17:43 -06:00
|
|
|
```sh
|
|
|
|
viv remove $(viv list -q)
|
|
|
|
```
|
|
|
|
|
2023-05-28 18:36:41 -05:00
|
|
|
To remove `viv` all together you can use the included `purge` command:
|
2023-03-08 03:43:07 -06:00
|
|
|
|
2023-05-28 18:36:41 -05:00
|
|
|
```sh
|
2023-05-31 10:54:53 -05:00
|
|
|
python3 <(curl -fsSL viv.dayl.in/viv.py) manage purge
|
2023-03-08 03:43:07 -06:00
|
|
|
```
|
|
|
|
|
2023-05-28 18:45:47 -05:00
|
|
|
## Additional Features
|
|
|
|
|
|
|
|
An experimental feature of `viv` is generating shim's that leverage the principles of `viv`.
|
|
|
|
These shims would operate similar to `pipx` in which you can specify a command line app to "install".
|
|
|
|
|
2023-06-02 11:53:42 -05:00
|
|
|
*Note* that `--standalone` will auto-generate a mini function version of `viv` to accomplish the same basic task as using a local copy of `viv`.
|
|
|
|
After generating this standalone `shim` you can freely use this script across unix machines which have `python>3.8`.
|
2023-05-28 18:45:47 -05:00
|
|
|
See [examples/black](https://github.com/daylinmorgan/viv/blob/dev/examples/black) for output of below command.
|
|
|
|
|
|
|
|
```sh
|
2023-05-31 10:54:53 -05:00
|
|
|
python3 <(curl -fsSL viv.dayl.in/viv.py) shim black -o ./black --standalone --freeze
|
2023-05-28 18:45:47 -05:00
|
|
|
```
|
|
|
|
|
2022-12-19 23:17:43 -06:00
|
|
|
## Alternatives
|
|
|
|
|
2023-03-08 03:43:07 -06:00
|
|
|
### [pip-run](https://github.com/jaraco/pip-run)
|
|
|
|
|
|
|
|
```sh
|
|
|
|
pip-run (10.0.5)
|
|
|
|
├── autocommand (2.2.2)
|
|
|
|
├── jaraco-context (4.3.0)
|
|
|
|
├── jaraco-functools (3.6.0)
|
|
|
|
│ └── more-itertools (9.1.0)
|
|
|
|
├── jaraco-text (3.11.1)
|
|
|
|
│ ├── autocommand (2.2.2)
|
|
|
|
│ ├── inflect (6.0.2)
|
|
|
|
│ │ └── pydantic>=1.9.1 (1.10.5)
|
|
|
|
│ │ └── typing-extensions>=4.2.0 (4.5.0)
|
|
|
|
│ ├── jaraco-context>=4.1 (4.3.0)
|
|
|
|
│ ├── jaraco-functools (3.6.0)
|
|
|
|
│ │ └── more-itertools (9.1.0)
|
|
|
|
│ └── more-itertools (9.1.0)
|
|
|
|
├── more-itertools>=8.3 (9.1.0)
|
|
|
|
├── packaging (23.0)
|
|
|
|
├── path>=15.1 (16.6.0)
|
|
|
|
├── pip>=19.3 (23.0.1)
|
|
|
|
└── platformdirs (3.1.0)
|
|
|
|
```
|
|
|
|
|
|
|
|
### [pipx](https://github.com/pypa/pipx/)
|
|
|
|
|
|
|
|
```sh
|
|
|
|
pipx (1.1.0)
|
|
|
|
├── argcomplete>=1.9.4 (2.1.1)
|
|
|
|
├── packaging>=20.0 (23.0)
|
|
|
|
└── userpath>=1.6.0 (1.8.0)
|
|
|
|
└── click (8.1.3)
|
|
|
|
```
|