From 950a21a020f5b0a9396e53729184d38a1818895a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=20Kov=C3=A1cs?= Date: Thu, 17 Oct 2024 20:39:34 +0200 Subject: [PATCH] docs: Clarification on which command to use on which Ubuntu version. (#30523) --- docs/docs/installation/pypi.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/installation/pypi.mdx b/docs/docs/installation/pypi.mdx index 564760e52b9fb..c7fc19e64bfbe 100644 --- a/docs/docs/installation/pypi.mdx +++ b/docs/docs/installation/pypi.mdx @@ -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**