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

How to Install Python on 2.x Pip & Easy_Install on Gentoo Linux Easy Guide

Linux Gentoo Python 2.x Setuptools Installation

The Tutorial shows you How to Install Easy_Install and Pip Python for Gentoo GNU+Linux.

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

The Content give Focus Only to the Essentials Instructions and Commands to make it Easier to Follow.

Python Pip 2.x Gentoo - Featured
  1. Open a Command Line Session
    (Press “Enter” to Execute Commands)

    Python 3 pip installation for Gentoo - Open Terminal

    In case first see: Terminal QuickStart Guide.

  2. Installing Python Pip.

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

      Here Python Pip Script Installer
      Link to Download the get-pip.py Python Pip Script Installer

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

    2. Installing Python Pip.

      Copy
      cd ~/Downloads

      To give Execution permission:

      Copy
      chmod +x get-pip.py

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

      Copy
      su -c "python get-pip.py"
  3. (Optional) Installing Python Setuptools for Easy_Install
    If you already Got Pip then the get-pip.py Script should already have Installed the easy_install!
    To Update it Run:

    Copy
    sudo pip install -U setuptools

    If you Do Not Installed Pip then to Install easy_install:

    Copy
    sudo apt-get install python-setuptools

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