I'm trying to copy my /usr/bin/terminator as downloaded on Ubuntu 18 with apt-get install terminator. I do sudo cp /usr/bin/terminator /usr/bin/terminator2. When I run terminator2 though, I get a Python exception thrown:
Traceback (most recent call last):
File "/usr/bin/t5", line 47, in <module>
import terminatorlib.optionparse
ImportError: No module named terminatorlib.optionparse
How is the terminatorlib Python module imported/seen by the original /usr/bin/terminator?
For the record, I'm trying to make duplicates of the app for easy Dock access as described here.