Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation: Clarify Python 3 on CentOS #78

Merged
merged 1 commit into from
Oct 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/docs/agent/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ $ sudo apt install -y python3 python3-pip libssl-dev

<TabItem value="rhel">

You can install python from the CentOS 7 repository:

```shell-session
$ sudo yum install python3-devel python3-pip
```

But you can also use the [SCL repository](https://www.softwarecollections.org/en/scls/rhscl/rh-python36/)

```shell-session
$ sudo yum install centos-release-scl
$ sudo yum install rh-python36
Expand Down
12 changes: 10 additions & 2 deletions docs/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,17 @@ $ sudo apt install -y python3.6-dev python3-pip redis-server

<TabItem value="rhel">

You can install python from the CentOS 7 repository:

```shell-session
$ sudo yum install python3-devel python3-pip
```

But you can also use the [SCL repository](https://www.softwarecollections.org/en/scls/rhscl/rh-python36/)

```shell-session
$ sudo yum install epel-release centos-release-scl scl-utils python3-devel rh-python36
$ sudo scl enable rh-python36
$ sudo yum install centos-release-scl
$ sudo yum install rh-python36
```

</TabItem>
Expand Down