0
0
mirror of https://gitflic.ru/project/maks1ms/ocab.git synced 2024-12-23 16:23:01 +03:00

Обновил how-to install deps

This commit is contained in:
fiersik 2024-02-24 21:13:51 +04:00
parent 88f40c7f82
commit 0dc216d9f4
2 changed files with 42 additions and 5 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
.vscode .vscode
.env .env
env env
.venv
venv venv
__pycache__ __pycache__
OCAB.db OCAB.db

View File

@ -1,9 +1,45 @@
Ставим poetry: ## Poetry
```bash
pip install poetry ### Установка с официального сайта
```shell
curl -sSL https://install.python-poetry.org | python3 -
``` ```
Ставим зависимости: ### Установка с PyPi
```bash
```shell
python3 -m pip install poetry
```
## Зависимости
### Добавление зависимости
```shell
poetry add NAME
```
`NAME` - название зависимости.
### Установка зависимостей
```shell
poetry install poetry install
```
### Обновление зависимостей
```shell
poetry update
```
## Виртуальное окружение
### Создание/активация
```shell
poetry shell
```
### Настройка
Хранить окружение внутри проекта
```shell
poetry config virtualenvs.in-project true
``` ```