You'll just have to specify where the repository lives, as with all
other rogue python libraries.
-import os
-import site
-
-# Add '~/src/sage.d' and '~/src/sage.d.git' to our path.
-site.addsitedir( os.path.expanduser('~/src/sage.d') )
-site.addsitedir( os.path.expanduser('~/src/sage.d.git') )
+# SageMath initialization
+#
+# Assumes that the repository is on your PYTHONPATH, and does only two
+# things:
+#
+# 1. Imports the public names from mjo.all.
+# 2. Disables the ipython GUI completion list.
+#
from mjo.all import *
-
-# Tell ipython we don't want its stupid "GUI" completion list.
%config TerminalInteractiveShell.display_completions = 'readlinelike'