Matplotlib Error
Created originally on Bitbucket by dsagman (David Silverman)
I have been working on a very simple program for plotting the Mandelbrot set using array math with numpy. The attached program works fine (if slowly) in python 3.7. When I switch to using PyPy 3.5 v 7.0.0 I get the below error report.
I am running my code in PyCharm on an iMac with OS 10.14.2. I have run other numpy based programs in this environment with no problems.
I've attached my code and a screen shot of the installed modules as viewed from PyCharm IDE.
#!/Users/dsagman/Downloads/pypy3.5v7/bin/pypy3 "/Users/dsagman/PycharmProjects/testfiles/mandelbrot set.py"
2019-02-13 14:04:22.719 pypy3[93918:32665128] -[NSApplication _setup:]: unrecognized selector sent to instance 0x7fd1eedab9d0
2019-02-13 14:04:22.719 pypy3[93918:32665128] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSApplication _setup:]: unrecognized selector sent to instance 0x7fd1eedab9d0'
*** First throw call stack:
(
0 CoreFoundation 0x00007fff36b52ecd __exceptionPreprocess + 256
1 libobjc.A.dylib 0x00007fff62c0e720 objc_exception_throw + 48
2 CoreFoundation 0x00007fff36bd0275 -[NSObject(NSObject) __retain_OA] + 0
3 CoreFoundation 0x00007fff36af4b40 ___forwarding___ + 1486
4 CoreFoundation 0x00007fff36af44e8 _CF_forwarding_prep_0 + 120
5 Tk 0x00007fff42e93777 TkpInit + 467
6 Tk 0x00007fff42e122ce Tk_Init + 1697
7 libffi.dylib 0x00007fff61f34f6c ffi_call_unix64 + 76
8 ??? 0x00007fd1f20785f8 0x0 + 140539685471736
)
libc++abi.dylib: terminating with uncaught exception of type NSException
Process finished with exit code 134 (interrupted by signal 6: SIGABRT)
Attachments: Screen_Shot_2019-02-13_at_2.15.33_PMScreen_Shot_2019-02-13_at_2.16.37_PMmandelbrot_set.py