Changes

Jump to navigation Jump to search
204 bytes added ,  15:57, 26 July 2016
no edit summary
Line 1: Line 1:  +
== Install ==
 +
=== Ubuntu server 16.04LTS ===
 +
wget https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tar.xz
 +
tar xvf Python-2.7.12.tar.xz
 +
./configure
 +
sudo apt-get install make
 +
make
 +
make install
 
== Indentation ==
 
== Indentation ==
 
Python is an indented language, so the code indentation matters. A good practice is to indent with 4 spaces (if you mix spaces and tabs the code won't work.
 
Python is an indented language, so the code indentation matters. A good practice is to indent with 4 spaces (if you mix spaces and tabs the code won't work.

Navigation menu