Skip to content

Add install instruction for python and pip for Fedora Linux #2024

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

Open
wants to merge 2 commits into
base: site
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
add Fedora Linux Instructions
  • Loading branch information
sumantro93 committed May 17, 2025
commit d90d1b44c995ad4e0e1724fb52f9b0cc2d6b6599
13 changes: 13 additions & 0 deletions _get_started/installation/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,20 @@ However, if you want to install another version, there are multiple ways:

* APT
* [Python website](https://www.python.org/downloads/mac-osx/)
* DNF

If you decide to use APT, you can run the following command to install it:

```bash
sudo apt install python
```

If you decide to use DNF, you can run the following command to install it:

```bash
sudo dnf install python
```

### Package Manager
{: #linux-package-manager}

Expand All @@ -54,6 +61,12 @@ While Python 3.x is installed by default on Linux, `pip` is not installed by def
sudo apt install python3-pip
```

While in Fedora Linux, `pip` can be installed using the `dnf`

```bash
sudo dnf install python3-pip
```

> Tip: If you want to use just the command `pip`, instead of `pip3`, you can symlink `pip` to the `pip3` binary.

## Installation
Expand Down