Le 22/05/2013 23:39, Javier López Peña a écrit :
On Wednesday, May 22, 2013 7:30:07 AM UTC+1, Snark wrote:
Is there a non-default and easy way to get a working
matplotlib-on-bare-python?
Depending on your operating system getting matplotlib working over
system python can be quite a tri
On Wednesday, May 22, 2013 7:30:07 AM UTC+1, Snark wrote:
> Is there a non-default and easy way to get a working
> matplotlib-on-bare-python?
>
Depending on your operating system getting matplotlib working over system
python can be quite a tricky task, IIRC on Mac OSX 10.6 you must install
so
Without building GUI support, it should work to replace show() with
savefig('plot.png'), for example. You won't get a window spawned with the
plot, but an image on disk.
--
Benjamin Jones
benjaminfjo...@gmail.com
On Tue, May 21, 2013 at 11:30 PM, Julien Puydt wrote:
> Le 21/05/2013 21:57, Willi
On Tuesday, May 21, 2013 11:30:07 PM UTC-7, Snark wrote:
>
> Le 21/05/2013 21:57, William Stein a �crit :
> > Sage is by default built with any GUI support.
>
> Is there a non-default and easy way to get a working
> matplotlib-on-bare-python?
>
>
You should check the matplotlib web page
Le 21/05/2013 21:57, William Stein a écrit :
Sage is by default built with any GUI support.
Is there a non-default and easy way to get a working
matplotlib-on-bare-python?
Snark on #sagemath
--
You received this message because you are subscribed to the Google Groups
"sage-devel" group.
To
Sage is by default built with any GUI support.
On May 21, 2013 12:52 PM, "Julien Puydt" wrote:
> Hi,
>
> the following lines of python:
> from pylab import *
> xs = range(20)
> ys = [x*x for x in xs]
> plot(xs,ys)
> show()
>
> have a different outcome depending on where I type them:
>
> - at the