From 8956bdc95454f3c56f028bc75e06cc864bf8f4b6 Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 15 Aug 2022 10:22:20 -0400 Subject: [PATCH] Update installation.md (#884) * Update installation.md I needed to run this additional command to install python3.9-specific distutils. Without this, installation of several poetry dependencies (idna, pyparsing, sniffio) failed with message: ModuleNotFoundError: No module named 'distutils.cmd' * Update installation.md --- docs/guide/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 7885ff7e..7c473eff 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -20,7 +20,7 @@ cd lnbits-legend/ sudo apt update sudo apt install software-properties-common sudo add-apt-repository ppa:deadsnakes/ppa -sudo apt install python3.9 +sudo apt install python3.9 python3.9-distutils curl -sSL https://install.python-poetry.org | python3 - export PATH="/home/ubuntu/.local/bin:$PATH" # or whatever is suggested in the poetry install notes printed to terminal