sandbox

This is my current blog where I discuss a variety of computing topics including Linux, vim, python and javascript as well as science and statistics. Many of the posts have accompanying gists, which contain code for the example discussed.

Install igraph for Python on Ubuntu 14.04

Jul 29, 2014

In this post I will describe installing python-igraph on Ubuntu 14.04, using the default Python 2.7. Previously I wrote a (long) post about how to create an initial python setup, which provides lots of detail about how I approach Python package installation. In particular, I use pip and install as a user. Of course, you can do otherwise.

Python and YAML on Ubuntu 14.04

Jul 12, 2014

In this post I will cover installing PyYAML using Python 2.7. I've previously covered my approach to Python package installation using pip, so you can read more there to get a sense of my approach.

Install sqlite3 on Ubuntu 14.04

Jul 10, 2014

The second assignment for Coursera's Introduction to Data Science focuses on databases and relational algebra. The programming assignments are done with sqlite3, so I need to install it on my Ubuntu 14.04 machine.

Install and use sphinx-bootstrap-theme on Ubuntu 14.04

Jul 7, 2014

In this post I will try out the sphinx-bootstrap-theme. As the name suggests, this project combines Sphinx, a Python documentation tool that generates html/pdf/etc from rst files, and bootstrap, a modern web framework from Twitter for generating responsive websites.

Install oauth2 Python package on Ubuntu 14.04

Jul 2, 2014

The first assignment for Coursera's Introduction to Data Science focuses on sentiment analysis of twitter data. To do this the oauth2_ package needs to be installed. Following the style outlined in a previous post, I will use pip to install the package as a user.