mirror of
https://github.com/trailofbits/algo.git
synced 2025-08-01 18:33:06 +02:00
Remove cosmetic command indentation
This commit is contained in:
parent
7c4dbfcf55
commit
4d4a8aec67
1 changed files with 7 additions and 7 deletions
14
README.md
14
README.md
|
@ -46,17 +46,17 @@ The easiest way to get an Algo server running is to run it on your local system
|
|||
|
||||
Once Python 3 is installed on your Mac, from Terminal run:
|
||||
```bash
|
||||
python3 -m pip install --upgrade virtualenv
|
||||
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:
|
||||
* Ubuntu and Debian:
|
||||
```bash
|
||||
sudo apt install -y python3-pip python3-virtualenv
|
||||
sudo apt install -y python3-pip python3-virtualenv
|
||||
```
|
||||
* Fedora:
|
||||
```bash
|
||||
sudo dnf install -y python3-virtualenv
|
||||
sudo dnf install -y python3-virtualenv
|
||||
```
|
||||
* Red Hat and CentOS: See this [documentation](docs/deploy-from-redhat-centos6.md).
|
||||
|
||||
|
@ -64,10 +64,10 @@ The easiest way to get an Algo server running is to run it on your local system
|
|||
|
||||
4. **Install Algo's remaining dependencies.** You'll need to run these commands from the Algo directory each time you download a new copy of Algo. In a Terminal window `cd` into the `algo-master` (ZIP file) or `algo` (`git clone`) directory and run:
|
||||
```bash
|
||||
python3 -m virtualenv --python="$(command -v python3)" .env &&
|
||||
source .env/bin/activate &&
|
||||
python3 -m pip install -U pip virtualenv &&
|
||||
python3 -m pip install -r requirements.txt
|
||||
python3 -m virtualenv --python="$(command -v python3)" .env &&
|
||||
source .env/bin/activate &&
|
||||
python3 -m pip install -U pip virtualenv &&
|
||||
python3 -m pip install -r requirements.txt
|
||||
```
|
||||
On Fedora add the option `--system-site-packages` to the first command above. On macOS install the C compiler if prompted.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue