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
.env
env
.venv
venv
__pycache__
OCAB.db

View File

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