Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/user/.local/lib/python3.6/site-packages/pyipptool/__init__.py", line 1, in <module>
from .config import get_config
File "/home/user/.local/lib/python3.6/site-packages/pyipptool/config.py", line 1, in <module>
import ConfigParser
ModuleNotFoundError: No module named 'ConfigParser'
Ich verwende Python 3.6.7 auf einem Linux Rechner.
Wenn du keine gefunden hast - dann wohl eher nicht. Ggf kannst du dich selbst an eine Portierung wagen, gewisse Standardprobleme wie den ersten Fehler kann das 2to3-Tool lösen. Aber ganz automatisch geht das natürlich nicht. Gerade weil IPP ja IO bedeutet, und sich da viel geändert hat.
pyipptool hat 2014 Python-3-Support bekommen, allerdings ist seitdem keine neue Version veröffentlicht worden. Man kann aber auch Pakete aus Git-Repos mit `pip` installieren, siehe hier in der Doku.
Wer? Wem? Zumal Python 2.7 ja noch nicht mal offiziell EOL erreicht hat.
„Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.“ — Brian W. Kernighan