In Sage Math Cloud I can open an IP:Notebook, execute
%load_ext sage
and Sage runs whithin the IP:Notebook.
Trying to do the same with my local IPython fails. I get an ImportError:
../IPython/core/extensions.py in load_extension(self, module_str)
96 if module_str not in sys.modules:
97 with prepended_to_syspath(self.ipython_extension_dir):
---> 98 __import__(module_str)
99 mod = sys.modules[module_str]
100 if self._call_load_ipython_extension(mod):
ImportError: No module named 'sage'
Where can I get this module 'sage'? Or is it private to SMC?