Skip to content

Latest commit

 

History

History
executable file
·
19 lines (12 loc) · 1012 Bytes

README.md

File metadata and controls

executable file
·
19 lines (12 loc) · 1012 Bytes

StatisticsLectures

Material for statistics lectures for physicists.

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 in other ways: sudo pip install ... (not suggested) or just for your user (pip install --user ...)

# install virtualenv, python3, pip
python -m venv myenv
source myenv/bin/activate
python -m pip install -r requirements.txt

Then everytime you need to setup the environment you should just do

source myenv/bin/activate

To open a notebook

jupyter lab Lecture1.ipynb