From 7f890dd779470493dd4359bd6a3132b66ebd3952 Mon Sep 17 00:00:00 2001 From: Danila Vershinin Date: Tue, 19 Dec 2023 22:40:15 +0700 Subject: [PATCH] Format installation commands in README.md 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. --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b629422..055fc98 100644 --- a/README.md +++ b/README.md @@ -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.