Re: [python-uk] Matplotlib show() doesn't display on OS X

2016-04-26 Thread Simon Walker via python-uk
m] > Sent: 25 April 2016 19:28 > To: UK Python Users > Subject: [python-uk] Matplotlib show() doesn't display on OS X > > I ran this simple script taken from a book: > > #!/usr/bin/env python3 > > import matplotlib.pyplot as plt > > squares = [1, 4, 9, 16, 25

Re: [python-uk] Matplotlib show() doesn't display on OS X

2016-04-25 Thread Pepper R.
28 To: UK Python Users Subject: [python-uk] Matplotlib show() doesn't display on OS X I ran this simple script taken from a book: #!/usr/bin/env python3 import matplotlib.pyplot as plt squares = [1, 4, 9, 16, 25] plt.plot(squares) plt.show() ... but although the script runs without error

[python-uk] Matplotlib show() doesn't display on OS X

2016-04-25 Thread gvim
I ran this simple script taken from a book: #!/usr/bin/env python3 import matplotlib.pyplot as plt squares = [1, 4, 9, 16, 25] plt.plot(squares) plt.show() ... but although the script runs without error it doesn't display anything, doesn't terminate and is unresponsive to either Ctrl+C or Ct