python - ImportError: No module named 'thread' - Stack Overflow
stackoverflow.com › questions › 36809788Apr 23, 2016 · Go to you site-packages folder, create a file called thread.py and paste this code in it: from _thread import * __all__ = ("error", "LockType", "start_new_thread", "interrupt_main", "exit", "allocate_lock", "get_ident", "stack_size", "acquire", "release", "locked") This creates an 'alias' for the module _thread called thread.