Check-out our new look and give us some feedback!

How To Install Pip on Fedora 23

Posted on by dpepper
Category: Tutorials | Tags: Fedora 23, PIP
Reading Time: < 1 minute
Note:
Please note that this article is considered legacy documentation because this OS has reached its end-of-life support.

Pip is a tool for installing and managing packages for Python. The popular Python programming language is considered one of the easiest to learn because of its emphasis on code readability.

Pre-Flight Check

  • These instructions are intended specifically for installing Pip on Fedora 23. If you’re using a different operating system, check out our guides to installing pip on Fedora 21 and CentOS 7.
  • We’ll be working from a Liquid Web Self Managed Fedora 23 server and logging in as root.

Step #1: Install Pip

First, we’ll clean up our packages:

dnf clean all

As a matter of best practice we’ll now also update our packages:

dnf -y update

Now we’ll install python-pip and any required packages:

dnf -y install python-pip

Step #2: Verify the Installation

View a list of helpful commands:

pip --help

Check the version of Pip that is installed:

pip -V

Which should yield a result similar to:

pip 7.1.0 from /usr/lib/python2.7/site-packages (python 2.7)

About the Author: dpepper

Latest Articles

How to Edit Your DNS Hosts File

Read Article

How to Edit Your DNS Hosts File

Read Article

Microsoft Exchange Server Security Update

Read Article

How to Monitor Your Server in WHM

Read Article

How to Monitor Your Server in WHM

Read Article