From aad4408e79b26a14e89ca56daa01f45cdd4ac43f Mon Sep 17 00:00:00 2001 From: BowTiedJerboa Date: Fri, 29 Dec 2023 11:30:53 +0100 Subject: [PATCH] Changed install recommendations to use pyenv instead of downloading from ppa --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d138453c4..0ee6f9b7f 100644 --- a/README.md +++ b/README.md @@ -52,11 +52,10 @@ The easiest way to get an Algo server running is to run it on your local system For macOS versions prior to Catalina, see [Deploy from macOS](docs/deploy-from-macos.md) for information on installing Python 3 . - - **Linux:** Recent releases of Ubuntu, Debian, and Fedora come with Python 3 already installed. Make sure your system is up-to-date and install the supporting package(s): + - **Linux:** Recent releases of Ubuntu, Debian, and Fedora come with Python 3 already installed. If your Python version is not 3.10, then you will need to use pyenv to install Python 3.10. Make sure your system is up-to-date and install the supporting package(s): * Ubuntu and Debian: ```bash - sudo add-apt-repository ppa:deadsnakes/ppa - sudo apt install Python3.10 + sudo apt install -y --no-install-recommends python3-virtualenv ``` On a Raspberry Pi running Ubuntu also install `libffi-dev` and `libssl-dev`.