Remove cosmetic command indentation

This commit is contained in:
David E. Myers 2019-08-26 13:39:41 -04:00
parent 7c4dbfcf55
commit 4d4a8aec67
No known key found for this signature in database
GPG key ID: D871FCA54815086C

View file

@ -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.