python: sys is not defined
Move import sys outside of the try–except block: import sys try: # … except ImportError: # … If any of the imports before the import sys line fails, the rest of the block is not executed, and sys is never imported. Instead, execution jumps to the exception handling block, where you then try to access … Read more