```
$ ipython
```
Lorsque vous tapez sur le terminal
```
$ 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]:
```
Sortez comme ça Vous pouvez l'utiliser ici comme d'habitude en mode interactif de python
Entrer avec le terminal
```
$ 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).
```
Le teminal devient comme ça Et jupyter démarre sur le navigateur
Ensuite, affichez le même écran que 1.
Cliquez là où la version python est écrite dans les notebook Ici, cliquez sur * python3 *
Ce sera comme ça, et ici nous allons taper le code python Ce que vous écrivez sera enregistré dans le répertoire où vous avez démarré votre notebook ipython Vous pouvez exécuter et paume automatiquement en même temps sur le navigateur avec [* Commande + retour *]
Pour quitter, appuyez sur [* Commande + C *].
Recommended Posts