Get The print() Output From Python Scripts In Blender Via The Command Line

You have to start blender from the command line on a mac to see the output from Python's "print()" calls.

Blender is not on the path by default. I added this to my `~/.zshrc` file so it's in the PATH variable:

Code
export PATH="/Applications/Blender.app/Contents/MacOS:$PATH"

That let's me open blender from the command line with:

Code
Blender

(Not the uppercase `B`)

#+KEYWORDS: console, terminal