From f271dc9232d1336fc07a28f62e0730fbd8129669 Mon Sep 17 00:00:00 2001 From: nicobo Date: Sun, 14 Mar 2021 20:02:03 +0100 Subject: [PATCH] fixed doc indentation --- Develop.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Develop.md b/Develop.md index f49174b..72ec1a7 100644 --- a/Develop.md +++ b/Develop.md @@ -35,17 +35,17 @@ To install the test package from test.pypi.org and check that it works : # First create a virtual environment not to mess with the host system python3 -m venv venv/pypi_test && source venv/pypi_test/bin/activate - + # Then install dependencies using the regular pypi repo pip3 install -c constraints.txt -r requirements-runtime.txt - + # Finally install this package from the test repo pip3 install -i https://test.pypi.org/simple/ --no-deps nicobot - + # Do some test python -m nicobot.askbot -V ... - + # Exit the virtual environment deactivate