Seems to be using IOStream in io.py. The opening of the console in either windowed or dock mode fails with the "fallback required..." message.
class IOStream:
def __init__(self, stream, fallback=None):
warn('IOStream is deprecated since IPython 5.0, use sys.{stdin,stdout,stderr} instead',
DeprecationWarning, stacklevel=2)
if not hasattr(stream,'write') or not hasattr(stream,'flush'):
if fallback is not None:
stream = fallback
else:
raise ValueError("fallback required, but not specified")
Seems to be using IOStream in io.py. The opening of the console in either windowed or dock mode fails with the "fallback required..." message.
Any idea where to address this in the console code?