
Pythong 2.7.9 Install Python Modules
Starting with Python 2.7.9, it is included by default with the Python binary installers. A virtual environment is a semi-isolated Python environment that allows packages to be installed for use by a particular application, rather than being installed system wide. Virtualenv is a third party tools for creating virtual environments, it is. The best and recommended way to install Python modules is to use pip, the Python package manager.Python is an interpreted, high-level and general-purpose programming language. Installation of Python 2.7 from the command line using the MSI installer.I had this post hanging in my drafts on how I attempted to install a valid Python 2.7.9 runtime environment on Ubuntu 14.04 and make my own.
...

Pythong 2.7.9 Upgrade Before Starting
I recommend doing an apt-get update and apt-get upgrade before starting.Create /etc/apt/sources.list.d/python-jessie.list and add deb jessie mainAdd the apt keys for these new repositories sudo apt-key adv -keyserver keyserver.ubuntu.com -recv-keys 8B48AD6246925553Sudo apt-key adv -keyserver keyserver.ubuntu.com -recv-keys 7638D0442B90D010Sudo apt-key adv -keyserver keyserver.ubuntu.com -recv-keys 9D6D8F6BC857C906We also need an apt-get preferences file which prevents Debian jessie packages with higher versions from taking over.Create /etc/apt/preferences.d/python-jessie-pin and add Package: *Now you can upgrade python 2.7. Now I understand another effect of the trolls: they make a community become over-sensitive and drive the new/naive newbie away.You can install the package that already exists in Debian jessie.
