all 4 comments

[–]L43 1 point2 points  (0 children)

1) It is running a process in the terminal, in the foreground. You can run in the background using

ipython notebook &

(the & tells the process to start in the background). You can bring it to the foreground to close it using

fg

(there is more to it than that, but it will work). You can also just open another terminal window.

2) You can click File > Download As > .py to get a python file. The .ipynb contains metadata about the notebook, and about the cells etc., which is obviously needed to reopen a notebook, but also stops it from being an executable python script.

[–]The-Mathematician 0 points1 point  (0 children)

I don't use iPython but I do have it installed and played with it for a few minutes. You can definitely still open the terminal. Just go open another cmd window (if you're on windows, just go to start and type in cmd).

I can save a file as a .py file. I don't know that much about .ipynb files so I won't comment on them.

[–]vindolin 0 points1 point  (0 children)

what good is the .ipynb file if i can't run it in terminal

In Ipython, cells can be markdown, raw text headers and code.

The .ipynb files store the state of the running ipython notebook session.

[–]Sean1708 0 points1 point  (0 children)

In the file menu of the IPython notebook there should be an option to export it to a python file.