Ask Your Question

Revision history [back]

Found the problem with the "RuntimeError: no available port." issue.

The key is:

------------------------------------------------------------
   File "<ipython console>", line 1
     b Integer(134)
             ^
SyntaxError: invalid syntax

The mac version, for whatever reason is expecting the port arg as a string, not an int.

This works:

sage: notebook(port="8000")

Note the quotes around the port number.