# Problems with Python mode in Processing 4.3 on M1 Mac running OSX 12.7.1

**URL:** https://discourse.processing.org/t/problems-with-python-mode-in-processing-4-3-on-m1-mac-running-osx-12-7-1/44102
**Category:** Processing.py
**Created:** [March 16, 2024, 12:00am UTC](https://discourse.processing.org/t/problems-with-python-mode-in-processing-4-3-on-m1-mac-running-osx-12-7-1/44102 "2024-03-16T00:00:14Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![svan](https://avatars.discourse-cdn.com/v4/letter/s/82dd89/32.png) [@svan](https://discourse.processing.org/u/svan)
#### Post date: [March 16, 2024, 3:12am UTC](https://discourse.processing.org/t/problems-with-python-mode-in-processing-4-3-on-m1-mac-running-osx-12-7-1/44102/4 "2024-03-16T03:12:50Z")

</div>

I just tried some Processing Python example code on a Mac M2 and had trouble also. The files in ‘Examples/Python Mode Differences’ would run but none of the others that I tested. If you know how to use pure Python the Thonny editor might be a better choice.

See other current thread: [https://discourse.processing.org/t/is-a-fresh-install-of-processing-3-5-4-and-python-mode-possible-mac-os/44104/2](https://discourse.processing.org/t/is-a-fresh-install-of-processing-3-5-4-and-python-mode-possible-mac-os/44104/2)

**Addendum:**  
I tried writing a simple demo with my M2 using a fresh download of version 3.5.4 from the website [Processing.org](http://Processing.org) and it ran ok. The code that I tested follows:

```auto
def setup():
    size(400,400)
    
def draw():
    fill(255,0,0)
    circle(width/2,height/2,100)            

```

---

_[View the full topic](https://discourse.processing.org/t/problems-with-python-mode-in-processing-4-3-on-m1-mac-running-osx-12-7-1/44102)._
