mirror of
https://github.com/autistic-symposium/tensorflow-for-deep-learning-py.git
synced 2025-05-10 18:54:57 -04:00
25 lines
439 B
Markdown
25 lines
439 B
Markdown
## Jupyter Notebooks
|
|
|
|
### Installing
|
|
|
|
Install any dependences for [Jupyter](http://jupyter.readthedocs.io/en/latest/install.html):
|
|
|
|
```shell
|
|
$ apt-get install build-essential python3-dev
|
|
$ pip install jupyter
|
|
```
|
|
|
|
### Running
|
|
|
|
On the notebook directory:
|
|
|
|
```shell
|
|
$ jupyter notebook
|
|
```
|
|
|
|
|
|
|
|
|
|
### Basics
|
|
|
|
* A notebook is made up of a number of cells with Python code. You can execute a cell by clicking on it and pressing ```Shift-Enter```.
|