Add instructions tu install it trough PyPI

main
kirbylife 2023-11-06 19:48:35 -06:00
parent 24433d5c23
commit d56a253526
1 changed files with 17 additions and 3 deletions

View File

@ -14,13 +14,27 @@ nxexpo it's a simple tool to define environment variables on-the-fly and persist
- [MyPy](https://www.mypy-lang.org/) - [MyPy](https://www.mypy-lang.org/)
## Installation ## Installation
### Intalation trough PyPI
To install the latest stable version follow the commands:
```Bash
$ pip install nvexpo --user
```
You can also use [pipx](https://pypa.github.io/pipx/) to install it:
```Bash
$ pipx install nvexpo
```
### From the source
To install from the source follow the commands: To install from the source follow the commands:
```Bash ```Bash
$ poetry build $ poetry build
$ pip install dist/nvexpo*.whl $ pip install dist/nvexpo*.whl
``` ```
And add the follow line to your `.bashrc` file: ## Preparation
Add the following line to your `.bashrc` file:
```Bash ```Bash
eval "$(nvexpo init bash)" eval "$(nvexpo init bash)"
``` ```