diff --git a/.gitignore b/.gitignore index cd8d226..344a92f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ .vscode .env env +.venv venv __pycache__ OCAB.db diff --git a/how-to install deps.md b/how-to install deps.md index 79c77e0..9415845 100644 --- a/how-to install deps.md +++ b/how-to install deps.md @@ -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 ``` \ No newline at end of file