Skip to content

Commit

Permalink
Format installation commands in README.md
Browse files Browse the repository at this point in the history
The update applies a formatting change to the installation commands in the README.md file. It puts all the necessary commands for CentOS/RHEL, Fedora Linux, Amazon Linux 2023, and Amazon Linux 2 within a markdown code block for better clarity and easier understanding.
  • Loading branch information
dvershinin committed Dec 19, 2023
1 parent 3cb7c86 commit 7f890dd
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,19 @@ then run `source ~/.bashrc` to apply to current shell.

### CentOS/RHEL, Fedora Linux and Amazon Linux 2023

sudo yum -y install https://extras.getpagespeed.com/release-latest.rpm
sudo yum -y install pip-safe
```bash
sudo yum -y install https://extras.getpagespeed.com/release-latest.rpm
sudo yum -y install pip-safe
```

### Amazon Linux 2

Amazon Linux 2 requires disabling EPEL repository due to its reliance on Python 3.7.

sudo yum -y install https://extras.getpagespeed.com/release-latest.rpm
sudo yum --disablerepo=epel install pip-safe
```bash
sudo yum -y install https://extras.getpagespeed.com/release-latest.rpm
sudo yum --disablerepo=epel install pip-safe
```

Using `pip-safe` command installs a program using Python 3, by default.

Expand Down

0 comments on commit 7f890dd

Please sign in to comment.