Hello, friends. We are giving good support to Fedora 34. That’s why today we will show you how to install PIP on Fedora 34 and get it ready for you to use comfortably.
What is PIP?
Pip is a package manager for Python projects. Thanks to it we will be able to install many libraries, programs, and tools simply as if it were a system package.
But the most interesting utility of PIP is that by creating a Python virtual environment, we can use it to install programs in the path of the project without affecting other projects or the system itself.
The operation is similar to that of a package manager like APT, DNF, or Zypper because we can install, uninstall and update Python packages from the PIP repositories.
So, let’s install it and get it ready for you to use without any problems.
Install Pip on Fedora 34
The installation will be done using the terminal. So, open a new session from the main menu. When you have opened the terminal, you can update the distribution by running
sudo dnf update
Then, you can perform a search in the Fedora repositories.
sudo dnf search pip
And you will get a wide range of output per screen, but the best results are in the following one:
In this case, the package is python3-pip
which we will have to install using DNF
sudo dnf install python3-pip
This will start the installation which should not take too long.
In the end, you can check the installed version
pip3 --version
Sample Output
pip 21.0.1 from /usr/lib/python3.9/site-packages/pip (python 3.9)
Although PIP is ready to use, you should always work with the latest version available. So, using it we can upgrade to the latest version.
So, to update PIP, run the following command:
sudo -H pip3 install -U pip WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead. Requirement already satisfied: pip in /usr/lib/python3.9/site-packages (21.0.1) Collecting pip Downloading pip-21.1.2-py3-none-any.whl (1.5 MB) |████████████████████████████████| 1.5 MB 7.4 MB/s Installing collected packages: pip Successfully installed pip-21.1.2
This way, we will have the latest version of PIP.
pip3 --version
pip 21.1.2 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)
Now yes, PIP is ready for battle.
Conclusion
PIP is a useful and basic tool in daily work with Python. So installing it should be a must for almost any programmer and sysadmin. As you may have noticed, the process is quite simple and anyone can complete it without any problem.