# Unable to view errors in Processing 3.5.4 IDE on Mac OS Monterey 12.4

**URL:** https://discourse.processing.org/t/unable-to-view-errors-in-processing-3-5-4-ide-on-mac-os-monterey-12-4/37915
**Category:** Processing.py
**Created:** [July 11, 2022, 1:20am UTC](https://discourse.processing.org/t/unable-to-view-errors-in-processing-3-5-4-ide-on-mac-os-monterey-12-4/37915 "2022-07-11T01:20:10Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![panic8681](https://avatars.discourse-cdn.com/v4/letter/p/f08c70/32.png) [@panic8681](https://discourse.processing.org/u/panic8681)
#### Post date: [July 11, 2022, 1:20am UTC](https://discourse.processing.org/t/unable-to-view-errors-in-processing-3-5-4-ide-on-mac-os-monterey-12-4/37915/1 "2022-07-11T01:20:10Z")

</div>

When using Processing in Python Mode I am not able to see any errors in the console. I can run sketches, but if I purposefully type in something with a syntax error (just the word “hello” for example) I don’t get any warnings and the sketch just opens a window. How can I get errors to show up? Is it possible to use this IDE on this version of Mac?

---

<div class="post-metadata">

### Author: ![tabreturn](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/tabreturn/32/3697_2.png) [@tabreturn](https://discourse.processing.org/u/tabreturn)
#### Post date: [July 11, 2022, 1:41am UTC](https://discourse.processing.org/t/unable-to-view-errors-in-processing-3-5-4-ide-on-mac-os-monterey-12-4/37915/2 "2022-07-11T01:41:23Z")

</div>

Welcome, @panic8681

For Python Mode, use Processing 3.5.4

---

<div class="post-metadata">

### Author: ![panic8681](https://avatars.discourse-cdn.com/v4/letter/p/f08c70/32.png) [@panic8681](https://discourse.processing.org/u/panic8681)
#### Post date: [July 11, 2022, 2:29am UTC](https://discourse.processing.org/t/unable-to-view-errors-in-processing-3-5-4-ide-on-mac-os-monterey-12-4/37915/3 "2022-07-11T02:29:51Z")

</div>

Yes that is what I am using. I updated the title to reflect that.

---

<div class="post-metadata">

### Author: ![javagar](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/javagar/32/11434_2.png) [@javagar](https://discourse.processing.org/u/javagar)
#### Post date: [July 12, 2022, 1:02am UTC](https://discourse.processing.org/t/unable-to-view-errors-in-processing-3-5-4-ide-on-mac-os-monterey-12-4/37915/4 "2022-07-12T01:02:10Z")

</div>

> [@panic8681](#):
>
> if I purposefully type in something with a syntax error (just the word “hello” for example) I don’t get any warnings

Did you type `“hello”`, including the quotes, into the console? That is a valid expression, and does not constitute a `SyntaxError`.

---

<div class="post-metadata">

### Author: ![panic8681](https://avatars.discourse-cdn.com/v4/letter/p/f08c70/32.png) [@panic8681](https://discourse.processing.org/u/panic8681)
#### Post date: [July 12, 2022, 4:20am UTC](https://discourse.processing.org/t/unable-to-view-errors-in-processing-3-5-4-ide-on-mac-os-monterey-12-4/37915/5 "2022-07-12T04:20:37Z")

</div>

no I typed it without quotes. I also typed circle(0,) and got nothing.

---

<div class="post-metadata">

### Author: ![javagar](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/javagar/32/11434_2.png) [@javagar](https://discourse.processing.org/u/javagar)
#### Post date: [July 12, 2022, 3:52pm UTC](https://discourse.processing.org/t/unable-to-view-errors-in-processing-3-5-4-ide-on-mac-os-monterey-12-4/37915/6 "2022-07-12T15:52:57Z")

</div>

Yes, indeed, something is wrong.

`hello` without quotes should raise a `NameError`, unless you define it prior to trying to access its value.

`circle(0,)` would raise a `TypeError` if you call it from a scope where it is recognized as a Processing.py function, since it is missing two positional arguments.

Therefore, since you did not see any error messages, there must be a bug in your installed Processing software. Maintainers of Processing will need to provide us with some insight regarding a remedy for this problem. Hopefully, they are reading this.
