#!/usr/bin/env python # coding: utf-8 # ## Installing an all-in-one distribution (Linux, OSX, Windows) # * The free edition of **Enthought** Canopy: # * http://www.enthought.com/ # * Update to the current version with: # _enpkg ipython_ # # # * **Anaconda** by Continuum Analytics: # * http://www.continuum.io/ # * Update to the current version with: # _conda update conda_ # _conda update ipython_ # # ## Getting binary installers # * **Linux**: # * Ubuntu # * _sudo apt-get install ipython-notebook_ # * _sudo apt-get install python-matplotlib python-scipy python-pandas python-sympy python-nose_ # * Fedora (18+) # * _sudo yum install python-ipython-notebook_ # * _sudo yum install python-matplotlib scipy python-pandas sympy python-nose_ # # # * **OSX**: # * MacPorts project (http://www.macports.org) # * Homebrew (http://mxcl.github.com/homebrew/) # # # * **Windows**: # * personal webpage of Christoph Gohlke (http://www.lfd.uci.edu/~gohlke/pythonlibs/) # # ## Using the Python packaging system # * `easy_install ipython[all]` # * `pip install -U ipython[all]` # ## Installing the development versions # git clone https://github.com/ipython/ipython.git # cd ipython # python setup.py install