This line gives
ModuleNotFoundError: No module named 'StringIO' in python3
From https://docs.python.org/3.0/whatsnew/3.0.html
The StringIO and cStringIO modules are gone. Instead, import the io module and use io.StringIO or io.BytesIO for text and data respectively.
possible solution:
try:
import StringIO
except ImportError:
from io import StringIO
executive_smach_visualization/smach_viewer/scripts/smach_viewer.py
Line 44 in 0d0d432
This line gives
ModuleNotFoundError: No module named 'StringIO'in python3From https://docs.python.org/3.0/whatsnew/3.0.html
possible solution: