User Tools

Site Tools


python-software

This is an old revision of the document!


Table of Contents

python

Python programming language.

Information

Usage

*See versions of python which are available*:

$ module avail python

Installation

Notes from the sysadmin during installation:

$ cd /tmp
$ wget https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tar.xz
$ tar xf Python-3.4.3.tar.xz
$ cd Python-3.4.3
$ scl enable devtoolset-2 bash
$ ./configure --prefix=/export/apps/python/3.4.3 --with-threads --with-computed-gotos --enable-ipv6 --with-system-expat --with-system-ffi --with-system-libmpdec --enable-loadable-sqlite-extensions
$ make -j4
$ sudo mkdir -p /export/apps/python/3.4.3
$ sudo chown -R aorth:aorth /export/apps/python/3.4.3
$ make install maninstall
$ ln -s /export/apps/python/3.4.3/bin/python3 /export/apps/python/3.4.3/bin/python
$ ln -s /export/apps/python/3.4.3/share/man/man1/python3.4.1 /export/apps/python/3.4.3/share/man/man1/python.1
$ sudo chown -R root:root /export/apps/python/3.4.3/

Configure options borrowed from Arch Linux's Python package.

python-software.1433861114.txt.gz · Last modified: 2015/06/09 14:45 by aorth