Ipython을 사용해 보았습니다.
Ipython NoteBook (jupyter) 사용법
1. Ipython 시작
```
$ ipython
```
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]:
```
이렇게 나온다
여기서 언제나 그렇듯이 파이썬의 대화 형 모드처럼 사용할 수 있습니다.
2. Ipython notebook(jupyter)의 시작
teminal로 입력
```
$ 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).
```
이런 식으로 teminal이 된다
그리고 브라우저에서 jupyter가 시작됩니다.
그런 다음 1.과 유사한 화면을 꺼냅니다.
Notebooks의 파이썬 버전이 작성된 곳을 클릭하십시오.
여기에서 python3을 클릭하십시오.
이런 식으로 여기에서 파이썬 코드를 몰아 넣습니다.
작성한 내용은 자신의 ipython notebook을 시작한 디렉토리에 저장됩니다.
브라우저에서 실행과 셀프 종려를 동시에 수행하려면 [Command + return]으로 가능합니다.
종료할 때는 [ Command + C ]로 종료할 수 있다.
Reference
이 문제에 관하여(Ipython을 사용해 보았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/sannnnnpe/items/885193fa0b88fe91ed78텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)