On 2 April 2014 13:21, Ira Fuchs <[email protected]> wrote: > I figured it out. I need to use the command line interface to say > notebook(interface='').
That is right. As with other Sage functions you can see the documentation by typing notebook? at the command prompt. On the machine on which I run a notebook server (behind a firewall) I have this one-line script in a file called start_sage_server: /usr/local/bin/sage -notebook interface='' accounts=True secure=True automatic_login=False which I use to start the server when needed. This allows users to create accounts, and does not log in any user on startup. John Cremona > > > On Tuesday, April 1, 2014 8:59:45 PM UTC-4, Ira Fuchs wrote: >> >> NOOB question: I know that by default the notebook server only listens at >> localhost but how do I start it so that I can access it from other >> addresses? I am running the Sage app on OSX. > > -- > You received this message because you are subscribed to the Google Groups > "sage-support" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/sage-support. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
