Github user Tagar commented on the issue:
https://github.com/apache/zeppelin/pull/2555
Found this works around the issue on Python 2.. will test more.
```
import sys
sys.stdout.isatty = lambda : False
sys.stdout.encoding = None
```---
