We suggest installing Anaconda. Installation of Python using Anaconda is local and does not require administrator rights.
The graphical installer for Windows, MacOS, or Linux is here.
Choose your operating system and download the Anaconda installer for Python 2.7 version.
Then, for Windows and MacOS, double click the installer to launch and simply follow the instructions.
For Linux, open a terminal window and enter the following to install Anaconda for Python 2.7:
bash ~/Downloads/Anaconda2-4.4.0-Linux-x86_64.sh
This installation includes Jupyter and Python 2.7.
Now, we will need to install some Python libraries in order to be ready for the workshop.
To do so, please open a terminal window if you are working with MacOS or Linux.
For those that are working with Windows, you can go to Windows Start menu located in the lower left portion of the desktop and search for ‘Command Prompt’ in the search box located at the bottom of the menu.
Only for Windows users, before installing anything, we have to write the following command into the ‘Command Prompt’:
conda config --add channels conda-forge
This way, we can use the fowlling command in order to install the packages we need:
conda install PACKAGENAME.
Here is the list of libraries we need :
-keras
that will automatically install theano, and
-tensorflow
For example, type the command: conda install keras
and you will probably need to answer by "y" to a question about updating or installing other related libraries that will be suggested to you.
You can now open a Jupyter notebook to get started with the following command: jupyter-notebook
For more information, please read the Anaconda quickstart pdf file, which is available here.