Skip to content

Latest commit

 

History

History
79 lines (45 loc) · 1.84 KB

INSTALL.md

File metadata and controls

79 lines (45 loc) · 1.84 KB

You will need a version of python with necessary packages

install anaconda https://store.continuum.io/cshop/anaconda/

###Install dependencies with pip (pip is installed with anaconda)

We need the code to talk to Instagram

pip install python-instagram

Install ipythonblocks

We need this module to use ipythonblocks to show examples of indexing

install ipythonblocks (pip install)

pip install ipythonblocks

You will need to make a directory and grab the workshop materials from github

https://github.com/cindeem/pydatasv-wit2014/

git clone https://github.com/cindeem/pydatasv-wit2014/

Alternatively, you can grab the workbooks through wakari

Start IPython

If you are running this on your machine, after installing all the dependencies and downloading the workshop materials, you can then start playing with the notebooks

ipython is installed with anaconda. You need to be in the directory where you saved the ipython notebooks (*.ipynb). When you start ipython notebook, it will open a web browser and you will have access to your notebooks

ipython notebook 

make your ipython notebook prettier (optional)

* create an ipython profile

	ipython profile create pydata


* find location of your profiles

	ipython locate 


* cd to the profile directory

	cd /Users/<username>/.ipython/profile_pydata

* make directory to hold our custom css

	mkdir static
	mkdir static/custom

* copy custom.css from git repo to new directory
	
	cp /path/to/gitrepo/pydatasv-wit2014/custom.css  /<userdir>/.ipython/profile_pydata/static/custom

Start IPython with the nice profile you just created

ipython notebook --profile pydata