From 18e17913265aa8c8d32bd160a6beb1be1d1914b4 Mon Sep 17 00:00:00 2001 From: WashingtonBispo Date: Sun, 6 Feb 2022 19:11:11 -0300 Subject: [PATCH 1/2] Add command to install poetry on make install and change the documentation Co-authored-by: Emily --- Makefile | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 92502509d9c0..c5c4e69ad73d 100644 --- a/Makefile +++ b/Makefile @@ -64,6 +64,7 @@ clean: rm -rf docs/.docusaurus install: + python -m pip install poetry poetry run python -m pip install -U pip poetry install diff --git a/README.md b/README.md index a86774dfe424..a7212a3c390d 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Rasa uses Poetry for packaging and dependency management. If you want to build i you have to install Poetry first. This is how it can be done: ```bash -curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python +python -m pip install poetry ``` There are several other ways to install Poetry. Please, follow From 5be29812b9864bbb5d251c2f75eea418a86ac09e Mon Sep 17 00:00:00 2001 From: WashingtonBispo Date: Tue, 8 Feb 2022 02:02:20 -0300 Subject: [PATCH 2/2] Exclude command on make install Co-authored-by: Emily --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index c5c4e69ad73d..92502509d9c0 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,6 @@ clean: rm -rf docs/.docusaurus install: - python -m pip install poetry poetry run python -m pip install -U pip poetry install