User Tools

Site Tools


cs_lang:python:things-to-know:installation

This is an old revision of the document!


$ wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tar.xz
$ tar -xf Python-3.5.2.tar.xz
$ rm Python-3.5.2.tar.xz
$ cd Python-3.5.2/
$ export LD_RUN_PATH=/usr/local/lib/
$ ./configure --enable-loadable-sqlite-extensions --enable-shared
$ make
# make install
$ cd ..
$ rm -Rf Python-3.5.2/

This is how I install Python on my Debian system. Shared libraries and SQLite support are enabled.
SSL is supposed to be enabled by default with Python3.

cs_lang/python/things-to-know/installation.1474363138.txt.gz · Last modified: 2016/09/20 11:18 by cedric