Russell E. Owen <rowen@...> writes:

> 
> I just created a binary installer for python.org's 64-bit Python 2.7 
> (MacOS X 10.6 and later). I'd like a few folks to test it to make sure 
> it works for more than just me, before serving it at the usual 
> location.
> 

I can report that your installer has enabled me to successfully 
execute the following two progams:

1)
import matplotlib as mpl
print(mpl.__version__)
print(mpl.__file__)
print(mpl.get_configdir())


2)
import matplotlib.pyplot as plot
xs = [2, 3, 5, 7, 11]
ys = [4, 9, 5, 9, 1]
plot.plot(xs, ys)
plot.savefig("squaremod10.png")


The second one took forever to finish executing, so I thought something
was wrong.  But it finally finished and produces a nice .png!  On 
subsequent runs, the program took about 1 sec to execute.

Thanks!





------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to