From 6825c5bfbbdfd25f3101026283f2d0cb35b13852 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Fri, 29 Sep 2023 10:14:25 +0200 Subject: [PATCH] chore: Use default python installation for pipenv Arch (which I use, btw) comes with Python 3.11. This makes `pipenv --python 3.9``fail because I don't have that version. It seems easier to just let pipenv pick the available version. Signed-off-by: Christoph Wurst --- README.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 4d2bd5abd..bf2b5fa93 100644 --- a/README.rst +++ b/README.rst @@ -126,10 +126,9 @@ Using pipenv ^^^^^^^^^^^^ 1. Install ``pipenv`` - https://pipenv.readthedocs.io/en/latest/ -2. Create a Python environment (typically inside this repository): ``pipenv --python 3.9`` -3. Change into the environment: ``pipenv shell`` -4. Install the dependencies ``pip install -r requirements.txt`` -5. Now you can use ``make ...`` to build all the stuff - for example ``make html`` to build the HTML flavor of all manuals +2. Change into the environment: ``pipenv shell`` +3. Install the dependencies ``pip install -r requirements.txt`` +4. Now you can use ``make ...`` to build all the stuff - for example ``make html`` to build the HTML flavor of all manuals The build assets will be put into the individual documentation subdirectories like ``developer_manual/_build/html/com`` To change into this environment you need to run ``pipenv shell`` to launch the shell and to exit you can use either ``exit`` or ``Ctrl`` + ``D``.