# Processing works on Laptop but not MacStudio, same MacOS and Processing version

**URL:** https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575
**Category:** Processing
**Created:** [June 18, 2025, 8:11pm UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575 "2025-06-18T20:11:38Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![tmiley](https://avatars.discourse-cdn.com/v4/letter/t/5daacb/32.png) [@tmiley](https://discourse.processing.org/u/tmiley)
#### Post date: [June 18, 2025, 8:11pm UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575/1 "2025-06-18T20:11:38Z")

</div>

Hello, I just migrated to new Macs - M4 Max laptop and Studio, I’m trying to run similar programs on both but the Studio version keeps crashing. I have Processing 4.4 running on Sequoia. Library example programs crash like this:

```auto
System Integrity Protection: enabled

Crashed Thread: 2

Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x0000000180dea188

Termination Reason: Namespace SIGNAL, Code 5 Trace/BPT trap: 5
Terminating Process: exc handler [2001]

```

I have deleted and re-installed Processing 4.4 to no avail. What should I do? Some programs do run ok. Many of them crash in the same way.

Any help is VERY MUCH APPRECIATED!

---

<div class="post-metadata">

### Author: ![ProcessingOrg](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/processingorg/32/18341_2.png) [@ProcessingOrg](https://discourse.processing.org/u/ProcessingOrg)
#### Post date: [June 19, 2025, 9:02am UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575/2 "2025-06-19T09:02:37Z")

</div>

Thanks for the detailed info. Could you share a minimal sketch that consistently triggers the crash on your Mac Studio? That would help us narrow down the issue.

Also, please try running the latest version of Processing (4.4.4) if you haven’t already. You can download it from [processing.org/download](https://processing.org/download).

---

<div class="post-metadata">

### Author: ![tmiley](https://avatars.discourse-cdn.com/v4/letter/t/5daacb/32.png) [@tmiley](https://discourse.processing.org/u/tmiley)
#### Post date: [June 20, 2025, 11:17pm UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575/3 "2025-06-20T23:17:46Z")

</div>

Sure, here’s one from the Basics\>Camera examples (MoveEye):

```processing
/**
 * Move Eye. 
 * by Simon Greenwold.
 * 
 * The camera lifts up (controlled by mouseY) while looking at the same point.
 */

void setup() {
  size(640, 360, P3D);
  fill(204);
}

void draw() {
  lights();
  background(0);
  
  // Change height of the camera with mouseY
  camera(30.0, mouseY, 220.0, // eyeX, eyeY, eyeZ
         0.0, 0.0, 0.0, // centerX, centerY, centerZ
         0.0, 1.0, 0.0); // upX, upY, upZ
  
  noStroke();
  box(90);
  stroke(255);
  line(-100, 0, 0, 100, 0, 0);
  line(0, -100, 0, 0, 100, 0);
  line(0, 0, -100, 0, 0, 100);
}

```

---

<div class="post-metadata">

### Author: ![tmiley](https://avatars.discourse-cdn.com/v4/letter/t/5daacb/32.png) [@tmiley](https://discourse.processing.org/u/tmiley)
#### Post date: [June 20, 2025, 11:19pm UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575/4 "2025-06-20T23:19:11Z")

</div>

p.s. I am using version 4.4

---

<div class="post-metadata">

### Author: ![ProcessingOrg](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/processingorg/32/18341_2.png) [@ProcessingOrg](https://discourse.processing.org/u/ProcessingOrg)
#### Post date: [June 21, 2025, 7:52am UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575/5 "2025-06-21T07:52:29Z")

</div>

> [@tmiley](#):
>
> p.s. I am using version 4.4

Could you please try the latest version (4.4.4) and see if that resolves the issue?

---

<div class="post-metadata">

### Author: ![tmiley](https://avatars.discourse-cdn.com/v4/letter/t/5daacb/32.png) [@tmiley](https://discourse.processing.org/u/tmiley)
#### Post date: [June 22, 2025, 7:40pm UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575/6 "2025-06-22T19:40:31Z")

</div>

I am running the 4.4.4 version. Maybe something relevant on this computer is that I migrated from an older intel-based iMac to an apple silicon M4 Max. Is there any way I can remove all install files (like .plist or other files) for a clean re-install? Also, would I need to re-install the libraries I was using on the older iMac to get a clean environment? Thanks again for your help!

---

<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: [June 22, 2025, 7:54pm UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575/7 "2025-06-22T19:54:34Z")

</div>

I presume that you are running the Apple Silicon version of Processing 4.4.4.

---

<div class="post-metadata">

### Author: ![tmiley](https://avatars.discourse-cdn.com/v4/letter/t/5daacb/32.png) [@tmiley](https://discourse.processing.org/u/tmiley)
#### Post date: [June 23, 2025, 7:05pm UTC](https://discourse.processing.org/t/processing-works-on-laptop-but-not-macstudio-same-macos-and-processing-version/46575/8 "2025-06-23T19:05:02Z")

</div>

Yes I am. I am using it on both of my computers. And it works fine on my MacPro laptop, just not on my Mac Studio
