Geospatial data and cluster analysis tutorial
# Clone the repo
> git clone https://github.com/luciasantamaria/geodata.git
> cd geodata/tutorial/
# Create a virtual environment, install virtualenv if needed
> pip install virtualenv
> virtualenv -p python3.4 .env
# Activate virtualenv by sourcing its activation scripts
> source .env/bin/activate
> . .env/bin/activate.fish # for fish users out there
# Install the project dependencies using pip3.X
> pip3.4 install -r requirements.txt
For python2.7 usage, assuming that python is the 2.7 executable:
> virtualenv -p python .env2.7
> source .env2.7/bin/activate
> pip install -r requirements2.7.txt
> ipython notebook
> python -m SimpleHTTPServer 8000
Files will be served at localhost:8000