Presentation: Full Stack Data Analysis With Python, February 2015 for Perth Data Science Meetup
Author: Jack Golding, reachable at [email protected]
View these notebooks at:
http://nbviewer.ipython.org/github/jackgolding/FullStackDataAnalysis/tree/master/
Video of talk at:
https://www.youtube.com/watch?v=N17XGVWAjv8
Steps
- Clone this repo using
git clone https://github.com/jackgolding/FullStackDataAnalysis.gitor by simply downloading the files however you seem fit. - Download
Anaconda 2.1withPython 3.4as outlined at http://continuum.io/downloads#34 if Anaconda or Python is updated on continuum's site after this talk has been given you will have to specify the version of Anaconda and/or Python later or risk the code not working. - Install Anaconda wherever you want. The beauty of using Anaconda is that deleting it if you don't want it is just a case of deleting the
Anacondafile after installing. - Open a Command Prompt and navigate to the folder you downloaded in Step 1 using
cd FILEPATHwhere FILEPATH is the path of the folder. - Run
conda create -n FullStack --clone rootif you downloaded Anaconda 2.1 and Python 3 in Sterp 2. If you are using a later version of Python and/or Anaconda you will probably need to run something likeconda create -n FullStack anaconda=2.1.0 python=3.4 - Verify the environment you created in
5exists by runningconda info -eand noticing you have two environments,rootandFullStack - Activate the
FullStackenvironment by runningsource activate FullStack- this command may differ depending on what operating system you are using but you should get an useful error message if it doesn't work. - To open notebooks run
ipython notebookto start the IPython Notebook server.
Please raise any errors as a github issue and star the project if you found it useful.