- Magistère d'Informatique de Rennes - ENS Rennes - Année 2019/2020
- Intervenants :
- Cours : Lilian Besson
- Travaux dirigés : Raphaël Truffet
C'est en ligne, sur cette page (https://perso.crans.org/besson/teach/info1_algo1_2019/
).
- Liste des notebooks : cette page (
https://perso.crans.org/besson/teach/info1_algo1_2019/notebooks/
), sur NBViewer (passif), sur Binder (interactif), et sur Google Colab.
- CoursMagistral_1.ipynb
- (aussi en python et en HTML)
- CoursMagistral_2.ipynb
- (aussi en python et en HTML)
- CoursMagistral_3.ipynb
- (aussi en python et en HTML)
- CoursMagistral_4.ipynb
- (aussi en python et en HTML)
- CoursMagistral_5.ipynb
- (aussi en python et en HTML)
- CoursMagistral_6.ipynb
- (aussi en python et en HTML)
- CoursMagistral_7.ipynb
- (aussi en python et en HTML)
- CoursMagistral_8.ipynb
- (aussi en python et en HTML)
Je rédigerai moins pour les cours suivants.
- CoursMagistral_9.ipynb
- (aussi en python et en HTML)
- Je n'ai rien rédigé pour ce cours
- Correction_examen_ALGO1_2019.ipynb
- (aussi en python et en HTML)
- Either directly in GitHub: see the list of notebooks;
- Or on nbviewer.jupiter.org: list of notebooks.
Anyone can use the mybinder.org website (by clicking on the icon above) to run the notebook in her/his web-browser. You can then play with it as long as you like, for instance by modifying the values or experimenting with the code.
Note: Only the Python kernel is supported on the MyBinder interface!
All the requirements can be installed with pip
and by running a few python -m ...
commands.
Note: if you use Python 3 instead of Python 2, you might have to replace
pip
andpython
bypip3
andpython3
in the next commands (if both pip and pip3 are installed).
2.a. Jupyter Notebook and IPython
sudo pip install jupyter ipython
It will also install all the dependencies, afterward you should have a jupyter-notebook
command (or a jupyter
command, to be ran as jupyter notebook
) available in your PATH
:
$ whereis jupyter-notebook
jupyter-notebook: /usr/local/bin/jupyter-notebook
$ jupyter-notebook --version # version >= 4 is recommended
4.2.1
- More information about notebooks (on the documentation of IPython) or on the FAQ on Jupyter's website.
- More information about mybinder.org: on this example repository.
All the notebooks in this repository are published under the terms of the MIT License (file LICENSE.txt). © Lilian Besson, 2019.