16 lines
261 B
Markdown
16 lines
261 B
Markdown
|
## Tractor
|
||
|
### 1. Requirements
|
||
|
python version 3.9 or higher
|
||
|
```bash
|
||
|
python -v
|
||
|
```
|
||
|
### 2. Create virtual environments and install libs
|
||
|
```bash
|
||
|
virtualenv venv
|
||
|
source activate
|
||
|
pip3 install -r requirements.txt
|
||
|
```
|
||
|
### 3. Run application
|
||
|
```bash
|
||
|
python3 main.py
|
||
|
```
|