Python is a high level, dynamically typed and object oriented language. It was invented in 1989 by Guido van Rossum
#### Linux ####
python --version
at the terminal and make sure the output is python 2.7.11 or similar.tar -xvzf Python-2.7.5.tgzcd Python-2.7.5./configuremakesudo make install#### Windows ####
We first need to install pip which is the preferred tool for installing 3rd party Python packages.
#### Installing pip on Linux####
sudo apt-get install python-pipsudo yum install python-pipFor other distros you may try the following:
curl -O http://python-distribute.org/distribute_setup.py
python distribute_setup.py
curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
python get-pip.py
#### Installing pip on Windows####
We will be using Jupyter Notebooks during the workshops and to follow along you should have it installed.
To install Jupyter on your system, run the following command:
pip install jupyter
### Linux/Mac OS X ###
Open a terminal and run python
### Windows ###
python.exeRunning the above command will open up the interactive python shell where you can run and evaluate arbitrary python commands.
Let's write the customary hello world program. On the console write the following and hit Enter