How to configure Python for JMP 14?
I'm very new to Python so this is hopefully an easy question. I have Python version 3.6 and 3.7 installed. I installed numpy, matplotlib, scipy and pdfkit in both versions. However I get errors in the log window when trying to run examples from the scripting index.
For the Python Get example:
Names Default To Here( 1 );
Python Init();
x1 = [1, 2, 3];
Python Send( x1 );
x2 = Python Get( x1 );
Sh
...