I followed the instructions for installing py5 but my test program cannot find py5 ???
MacBook Pro M1, 2020 running Tahoe 26.5.2, I'm using the Thonny editor.
import py5
def setup():
py5.size(200,200)
py5.rect_mode(py5.CENTER)
def draw():
py5.rect(py5.mouse_x,py5.mouse_y,10,10)
Traceback (most recent call last):
File "/Users/walter/Documents/Python/py5_test.py", line 1, in
import py5
ModuleNotFoundError: No module named 'py5'
I followed the instructions for installing py5 but my test program cannot find py5 ???
MacBook Pro M1, 2020 running Tahoe 26.5.2, I'm using the Thonny editor.
import py5
def setup():
py5.size(200,200)
py5.rect_mode(py5.CENTER)
def draw():
py5.rect(py5.mouse_x,py5.mouse_y,10,10)
Traceback (most recent call last):
File "/Users/walter/Documents/Python/py5_test.py", line 1, in
import py5
ModuleNotFoundError: No module named 'py5'