Basic setup ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Some of the tutorials use Jupyter notebooks. There are two ways of getting Jupyter: via plain Python or using the Anaconda Python distribution. (`see Jupyter web page `_) Plain Python ------------ Create and start a virtual environment and install Jupyter: .. code:: bash $ python3 -m venv $ source /bin/activate $ pip install jupyter Anaconda -------- Create and start a virtual environment: .. code:: bash $ conda create -n python= anaconda $ source activate Jupyter already comes with Anaconda, thus does not need any additional installation. Start Jupyter ------------- The Jupyter notebook environment is launched by .. code:: bash $ jupyter notebook where ```` can also be omitted.