https://github.com/matthiaskoenig/python-tutorial
Introduction to python
https://github.com/matthiaskoenig/python-tutorial
Last synced: 10 months ago
JSON representation
Introduction to python
- Host: GitHub
- URL: https://github.com/matthiaskoenig/python-tutorial
- Owner: matthiaskoenig
- Created: 2020-02-04T10:50:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-04T16:09:46.000Z (almost 6 years ago)
- Last Synced: 2025-01-04T20:24:55.460Z (12 months ago)
- Language: HTML
- Size: 927 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-tutorial
## Installation
To run the examples and code we need Python and some additional libraries
Create a virtual environment
```
pip install virtualenv virtualenvwrapper
mkvirtualenv python-intro --python=python3
(python-intro) pip install -r requirements.txt
(python-intro) python -m ipykernel install --user --name=python-intro
```
## Slide presentation
Interactive slides can be generated with https://github.com/damianavila/RISE
```
pip install RISE
```
The slides can be served non-interactively via
```
jupyter nbconvert 01_python_introduction.ipynb --to slides --ServePostProcessor.port=8910 --post serve
```