User Tools

Site Tools


python_altinstall

This is an old revision of the document!


source http://sowingseasons.com/blog/building-python-2-7-10-on-raspberry-pi-2.html

Using Alt install

Prerequisites

yum groupinstall "Development tools"
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel

Python 2.10.5

Source: http://toomuchdata.com/2014/02/16/how-to-install-python-on-centos/

Now the dependancies have been installed we can go ahead and get the python tar:

wget https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tgz
tar -zxvf Python-2.7.10.tgz
cd Python-2.7.10
The following command will install the Python interpreter in /usr/local/bin/python2.7
./configure --prefix=/usr/local --enable-unicode=ucs4 --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib"
make && make altinstall

Download and install Setuptools + pip

wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
python2.7 ez_setup.py

easy_install-2.7 pip
Python 2.7 should now be located:
/usr/local/bin/python2.7

Understanding Python locations

python_altinstall.1444289777.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki