Material for statistics lectures for physicist.
The notebooks (files with extension .ipynb) can be opened directly on github. To render them as slides RISE is needed. Otherwise also a simple jupyter nbconvert --to slides Lecture1.ipynb --post serve works, even if the style is not optimized.
To install jupyter and other software the easier way is to create a virtualenv. virtualenv can be installed with yum, dnf, apt, ... or also with pip. Otherwise you can install the software as root (sudo pip install ...) or just for your user (pip install --user ...)
virtualenv myenv
source myenv/bin/activate
pip install jupyter matplotlib numpy scipy
Then everytime you need to setup the environment you should just do
source myenv/bin/activate