```
$ ipython
```
Wenn Sie auf dem Terminal tippen
```
$ ipython
Python 3.5.1 |Anaconda 2.5.0 (x86_64)| (default, Dec 7 2015, 11:24:55)
Type "copyright", "credits" or "license" for more information.
IPython 4.0.3 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]:
```
Komm so raus Sie können es hier wie gewohnt im interaktiven Python-Modus verwenden
Mit Terminal eingeben
```
$ ipython notebook
[I 18:53:37.307 NotebookApp] The port 8888 is already in use, trying another random port.
[I 18:53:37.373 NotebookApp] Serving notebooks from local directory: /Users/hoge/test
[I 18:53:37.374 NotebookApp] 0 active kernels
[I 18:53:37.374 NotebookApp] The Jupyter Notebook is running at: http://localhost:8889/
[I 18:53:37.374 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
```
Das Teminal wird so Und jupyter startet im Browser
Zeigen Sie als Nächstes denselben Bildschirm wie 1 an.
Klicken Sie auf die Stelle, an der die Python-Version in Notebooks geschrieben ist Klicken Sie hier auf * python3 *
Es wird so sein und hier werden wir den Python-Code eingeben Was Sie schreiben, wird in dem Verzeichnis gespeichert, in dem Sie Ihr ipython-Notizbuch gestartet haben Mit [* Befehl + Zurück *] können Sie gleichzeitig im Browser laufen und sich selbst palmen.
Drücken Sie zum Beenden [* Befehl + C *].
Recommended Posts