Skip to content

Commit

Permalink
docs: Clarification on which command to use on which Ubuntu version. (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
kkovacs authored Oct 17, 2024
1 parent bad48d0 commit 950a21a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/installation/pypi.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ level dependencies.

**Debian and Ubuntu**

The following command will ensure that the required dependencies are installed:
In Ubuntu **20.04 and 22.04** the following command will ensure that the required dependencies are installed:

```bash
sudo apt-get install build-essential libssl-dev libffi-dev python-dev python-pip libsasl2-dev libldap2-dev default-libmysqlclient-dev
sudo apt-get install build-essential libssl-dev libffi-dev python3-dev python3-pip libsasl2-dev libldap2-dev default-libmysqlclient-dev
```

In Ubuntu 20.04 the following command will ensure that the required dependencies are installed:
In Ubuntu **before 20.04** the following command will ensure that the required dependencies are installed:

```bash
sudo apt-get install build-essential libssl-dev libffi-dev python3-dev python3-pip libsasl2-dev libldap2-dev default-libmysqlclient-dev
sudo apt-get install build-essential libssl-dev libffi-dev python-dev python-pip libsasl2-dev libldap2-dev default-libmysqlclient-dev
```

**Fedora and RHEL-derivative Linux distributions**
Expand Down

0 comments on commit 950a21a

Please sign in to comment.