From 60a10c8b12e9aec5ded3858b21c65202cf20654a Mon Sep 17 00:00:00 2001 From: "David E. Myers" Date: Tue, 27 Aug 2019 13:54:34 -0400 Subject: [PATCH] Update README for Python 3 --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fe1eb7e..6eca5c9 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ The easiest way to get an Algo server running is to run it on your local system - Run the command `git clone https://github.com/trailofbits/algo.git` to create a directory named `algo` containing the Algo scripts. -3. **Install Algo's core dependencies.** Algo requires that Python 3 and one supporting package are installed on your system. +3. **Install Algo's core dependencies.** Algo requires that **Python 3** and at least one supporting package are installed on your system. - **macOS:** Apple does not provide Python 3 with macOS. There are two ways to obtain it: * Use the [Homebrew](https://brew.sh) package manager. After installing Homebrew install Python 3 by running `brew install python3`. @@ -49,11 +49,12 @@ The easiest way to get an Algo server running is to run it on your local system python3 -m pip install --upgrade virtualenv ``` - - **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 needed supporting package: + - **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): * Ubuntu and Debian: ```bash - sudo apt install -y python3-pip python3-virtualenv + sudo apt install -y python3-virtualenv ``` + On Ubuntu 16.04 LTS you should also install `python3-pip`. * Fedora: ```bash sudo dnf install -y python3-virtualenv