When I try to run an arcade file on my MacBook M1 it returns the error ModuleNotFoundError: No module named 'pymunkoptions'
. In debugging I noticed that it got called as soon as the code referenced arcade, and that it has to do with the arm64 processor not supporting all the parts of the code.
Traceback (most recent call last):
File "~/project/__main__.py", line 1, in <module>
from game.director import Director
File "~/project/game/director.py", line 1, in <module>
from arcade import SpriteList
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/arcade/__init__.py", line 103, in <module>
from .drawing_support import calculate_hit_box_points_detailed
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/arcade/drawing_support.py", line 7, in <module>
import pymunkoptions
ModuleNotFoundError: No module named 'pymunkoptions'
I did some research and it looks like pymunkoptions was a depreciated part of the older versions of Pymunk, which isn't used in the newer versions. switching to Pymunk==5.7.0 creates a pymunkoptions folder in python3.9/site-packages but doesn't populate it, and unlike in this instance --> What is pymunkoptions? , it doesn't solve my incompatibility issues.
This is likely because the arcade version is 2.4.3, even though the current version is 2.6.5. Attempting to install any version newer than the one installed brings up issues because it needs Shapely 1.8.0 (which is only supported up to 1.5.9 for the M1 arm64)
I am running: python 3.9.4, arcade 2.4.3, pymunk 6.2.1, and shapely 1.5.9.
Can anyone help me?? Is there anyone else running arcade programs on a MacBook M1 that can share some insight?