$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Python on 2.x Pip & Setuptools on CentOS Linux/GNU Easy Guide

March 7, 2015 | By the+gnu+linux+evangelist.

Installing Python 2.x Pip & Easy_install for CentOS

Hi! The Tutorial shows you Step-by-Step How to Install Python 2.x Pip and Setuptools on CentOS 6.x/7.x/8.x/8-Stream/9-Stream GNU+Linux Workstation/Server.

The Python 2.x Setuptools Packages is Now Automatically Installed by the get-pip.py Script.

Python Pip is the Recommended Tool for Installing New Python Packages from the PyPI Repositories.

How to Install Python 2.x Pip and Easy_install Commands on CentOS - Featured
  1. Open a Terminal Shell Emulator Window
    (Press “Enter” to Execute Commands)

    How to Install Python 2.x Pip and Easy_install Commands on CentOS Linux - Open Terminal

    In case first see: Terminal QuickStart Guide.
    Or Login into the Server Shell.

  2. Installing Python 2.x Pip Tool.

    1. Download the get-pip.py Pip Script Installer

      Python Pip Script Installer

      Right-Click on Link > Save As get-pip.py.

    2. Installing Python Pip.

      cd ~/Downloads

      To give Execution permission:

      chmod +x get-pip.py

      If Got “User is Not in Sudoers file” then see: How to Enable sudo

      sudo su -c "python get-pip.py"
  3. Then to Install Python Setuptools with Easy_Install
    Then too Update it Run:

    sudo pip install -U setuptools