Actualiser README.md
This commit is contained in:
11
README.md
11
README.md
@ -14,21 +14,22 @@ There is two solutions:
|
|||||||
### First solution virtual env
|
### First solution virtual env
|
||||||
|
|
||||||
You can create a [virtual python environment](https://docs.python.org/3/library/venv.html)
|
You can create a [virtual python environment](https://docs.python.org/3/library/venv.html)
|
||||||
```bash
|
```sh
|
||||||
python -m venv .venv
|
python -m venv .venv
|
||||||
```
|
```
|
||||||
|
|
||||||
and install the `requirements.txt`
|
and install the `requirements.txt`
|
||||||
|
|
||||||
```bash
|
```sh
|
||||||
pip intall -r requirements.txt
|
.venv/bin/pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
### Second solution install on your global python
|
### Second solution install on your global python
|
||||||
|
|
||||||
Don't create / use virtual env, just install the requirements on your global python.
|
Don't create / use virtual env, just install the requirements on your global python.
|
||||||
|
|
||||||
```bash
|
```sh
|
||||||
pip intall -r requirements.txt
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
## How to use it
|
## How to use it
|
||||||
|
Reference in New Issue
Block a user