Skip to content

Commit

Permalink
docs: update install-from-scratch instructions for CentOS (apache#16129)
Browse files Browse the repository at this point in the history
Update install-from-scratch instructions for current CentOS stream, based on doing a test install today.  CentOS stream python packages are now named after the version ("python3") and current Superset code requires updating Pip to a more current version.
  • Loading branch information
jberkus authored and Emmanuel Bavoux committed Nov 14, 2021
1 parent ee2cc8c commit e2f3476
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/src/pages/docs/installation/installing_scratch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ Install the following packages using the `yum` package manager:
sudo yum install gcc gcc-c++ libffi-devel python-devel python-pip python-wheel openssl-devel cyrus-sasl-devel openldap-devel
```

In more recent versions of CentOS and Fedora, you may need to install a slightly different set of packages using `dnf`:

```
sudo dnf install gcc gcc-c++ libffi-devel python3-devel python3-pip python3-wheel openssl-devel cyrus-sasl-devel openldap-devel
```

Also, on CentOS, you may need to upgrade pip for the install to work:

```
pip3 install --upgrade pip
```

**Mac OS X**

If you're not on the latest version of OS X, we recommend upgrading because we've found that many
Expand Down

0 comments on commit e2f3476

Please sign in to comment.