This tutorial was generated from a Jupyter notebook. You can download the notebook here.
In this tutorial, you will set up a Python computing environment for scientific computing. There are two main ways people do this.
In this class, we will use Anaconda, with its associated package manager, conda
. It has recently become the de facto package manager/distribution for scientific use.
We are at an interesting point in Python's history. Python is currently in version 3.5 (as of September 13, 2015). The problem is that Python 3.x is not backwards compatible with Python 2.x. Many scientific packages were written in Python 2.x, and have been very slow to update to Python 3. However, Python 3 is Python's present and future, so all packages eventually need to work in Python 3. Today, most important scientific packages work in Python 3. All of the packages we will use do, so we will use Python 3 in this course.
For those of you who are already using Anaconda with Python 2, you can create a Python 3 environment.
Downloading and installing Anaconda is simple.
conda
when it is available.That's it! After you do that, you will have a functioning Python distribution.
conda
package manager¶conda
is a package manager for keeping all of your packages up-to-date. It has plenty of functionality beyond our basic usage in class, which you can learn more about by reading the docs. We will primarily be using conda
to install and update packages.
conda
works from the command line. To get a command line prompt, do the following.
/Applications/Utilities
folder. Otherwise, hold down Command-space bar and type "terminal" in the search box, and you can select the Terminal Application.Now that you have a command line prompt, you can start using conda
. The first thing we'll do is update conda
itself. To do this, enter the following on the command line:
conda update conda
If conda
is out of date and needs to be updated, you will be prompted to perform the update. Just type y
, and the update will proceeed.
Now that conda
is updated, we'll use it to see what packages are installed. Type the following on the command line:
conda list
This gives a list of all packages and their versions that are installed. Now, we'll update all packages, so type the following on the command line:
conda update --all
You will be prompted to perform all of the updates. They may even be come downgrades. This happens when there are package conflicts where one package requires an earlier version of another. conda
is very smart and figures all of this out for you, so you can almost always say "yes" (or "y
") to conda
when it prompts you.
Finally, we will use conda
to install a package that is not included in the Anaconda distribution that we would like to use. We will install Seaborn, which is a nice package for data visualization. To do this, type the following on the command line:
conda install seaborn
You will again be prompted to approve the installation. Go for it! Seaborn is pretty cool.
pip
¶Some packages are not available through conda
for various reasons, perhaps because they have not been submitted to the Anaconda developers or are still under nascent development. You can still install these packages and conda
will be aware of them using pip
, short for "Python install Python." One package we will use is pybeeswarm, used for making beeswarm plots. To install pybeeswarm, simple enter the following at the command line
pip install pybeeswarm
This will install pybeeswarm
, and you will be able to import it when you want to use it.
conda
is a convenient package manager for many reasons, one being that many packages contain compiled code, and conda
installs binaries, enabling you to skip the ofter troublesome compilation step. As you can imagine, some packages not covered by conda
do need to be compiled on your machine. In order to do that, you need to have compilers installed on your machine that pip
can access to do the compilation. A good way to do this for Macs is to install Developer Tools, which you can get from the Apple App Store for free. For Windows you can install the MinGW suite or Visual Studio. We will probably not use any packages that require compilation outside of conda
, so you do not need to worry about this now.
You are welcome to use any text editor/interactive developer environment (IDE) you like. I like Spyder, which is included in the Anaconda distribution. However, we have found that Spyder reliably crashes with certain Pandas objects (which we will definitely use throughout the course). Therefore, we will use Light Table along with an IPython QtConsole that can be launched from the Anaconda Launcher to do our computing in class. All of your homework will be submitted as Jupyter notebooks.
You are welcome to use whatever editor you like in class. However, note that all of the in-class demos will use Light Table with an IPython QtConsole. This is the only configuration we guarantee support for in class. You may be on your own if you use another IDE.
The IPython QtConsole can be launched through Anaconda's Launcher app, but you need to install Light Table. Light Table is a light weight text editor with pleasant features. To install it, just download it from the Light Table website and follow the instructions.
Importantly, after it is installed, you should do some configuration for Python. When you first launch Light Table, you will get a welcome screen. Do the following steps to get your tabs set properly for Python.
behaviors
and select "Settings: User behaviors". This will open a new tab called user.behaviors
, which you can edit.Add the following to the bottom of this file:
[:editor.python :lt.objs.editor/tab-settings false 4 4]
It will be useful to be able to comment out blocks of code. You can set your key bindings to do this. To do this, do the following steps.
keymap
and select "Settings: User keymap". This will open a tab called user.keymap
, which you edit.Add the following to the bottom of this file:
[:editor.active "ctrl-/" :toggle-comment-selection]
After that, Light Table should be ready for you to use to rock some Python!
Right now, you will use Spyder just to check to make sure your Python distribution is working properly.
To start up Spyder, you can either launch it from the command line by typing
spyder
or you can do the following.
anaconda
folder. Just double click the Launcher application, and you will get a window where you can choose which app to launch. Click Spyder.Now, launch Spyder and configure the IPython settings by doing the following.
python
$\to$ Preferences
on a Mac, or Tools
$\to$ Preferences
on Windows). Select IPython console
and then the Graphics
tab. We'll now run a quick test to make sure things are working properly. We will generate a plot of the Gamma distribution (which we will discuss later in class),
\begin{align} f(x\mid a,\lambda) = \frac{(\lambda x)^a\,\mathrm{e}^{-\lambda x}}{x\Gamma(a)}, \end{align}on the domain $0\le x \le 10$ with $a = 2$ and $\lambda = 1$. This simplifies the expression to $f(x\mid 2, 1) = x \mathrm{e}^{-x}$.
Now, you can go to the new file which should be open in the Spyder editor window. With the exception of the obvious omission, paste the code below into the editor window. You can run the code by clicking on the green arrow on the Spyder toolbar. You may be prompted about run settings. Under "Console," choose "Execute in current Python or IPython console." You may also be prompted to save the file, which you should do, and then it will run.
# Do not enter the next line. This is only to prepare this tutorial.
%matplotlib inline
# Do everything following
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
# Generate x values
x = np.linspace(0.0, 10.0, 100)
y = x * np.exp(-x)
# Generate the plot
plt.plot(x, y, 'k-')
plt.margins(0.02)
plt.xlabel(r'$x$', fontsize=18)
plt.ylabel(r'$y$', fontsize=18)
# These two commands may not be necessary, depending on your configuration.
plt.draw()
plt.show()
You should have a window pop up that shows the plot above. In Windows, you may have to click an icon on the bottom tool bar to view it. If you get this plot, excellent! You now have a functioning Python environment for scientific computing!