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

45 lines
783 B
Markdown
Raw Normal View History

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