This commit is contained in:
Kyle Lahnakoski 2020-02-14 12:04:06 -05:00
Родитель 8d9d2c3211
Коммит 967bbd390e
2 изменённых файлов: 19 добавлений и 0 удалений

9
.gitignore поставляемый
Просмотреть файл

@ -105,3 +105,12 @@ ENV/
# mypy
.mypy_cache/
# directories starting with dot
.*/*
# IDE
/*.iml
# pip
requirements.txt

Просмотреть файл

@ -19,6 +19,16 @@ First [install poetry][2], then run:
You will need Python 3.7 or higher.
## Windows installation
The `poetry install` command may lock up on Windows10 (Python3.7.6) you can get around this with:
poetry export -f requirements.txt > requirements.txt
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
# Usage
The `poetry install` command will create a virtualenv with all of the required dependencies