User Tools

Site Tools


cs_lang:python:things-to-know:installation

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
cs_lang:python:things-to-know:installation [2016/09/20 11:11] cedriccs_lang:python:things-to-know:installation [2016/09/20 11:18] cedric
Line 1: Line 1:
-<code shell>+<code bash> 
 +$ 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/ $ export LD_RUN_PATH=/usr/local/lib/
 $ ./configure --enable-loadable-sqlite-extensions --enable-shared $ ./configure --enable-loadable-sqlite-extensions --enable-shared
 $ make $ make
 # make install # make install
 +$ cd ..
 +$ rm -Rf Python-3.5.2/
 </code> </code>
 +
 +This is how I install Python on my Debian system. Shared libraries and SQL support are enabled  
 +SSL is supposed to be enabled with Python3.
cs_lang/python/things-to-know/installation.txt · Last modified: 2016/09/20 11:21 by cedric