furmada / PythonOS

A touchscreen interface, library, and app platform for Python and Raspberry Pi.
MIT License
66 stars 14 forks source link

Err: python3 pyos.py (yes i know but i ported it) #34

Open 0xTheSmartGuy opened 2 years ago

0xTheSmartGuy commented 2 years ago

pygame 2.1.2 (SDL 2.0.20, Python 3.10.3) Hello from the pygame community. https://www.pygame.org/contribute.html Traceback (most recent call last): File "/Users/masterkebabsuperstar/PythonOS/pyos.py", line 20, in from thread import start_new_thread ModuleNotFoundError: No module named 'thread' THIS IS INACCEPTABLE WTH!

happyleibniz commented 1 year ago

In Python 3 instead of:

import thread Do:

import _thread