Results of commands are not displayed when run from a notebook cell.
From IPython notebook:
os.system("pwd")
0
<-- no errors
From IPython invoked from CLI:
In [15]: os.system("pwd")
/Users/joe
Out[15]: 0
<-- no errors
I expected to see /Users/joe
displayed when command runs from a notebook cell.
What's missing?
Thank you, I.