On Tuesday, December 9, 2014 11:15:23 AM UTC-5, RecentConvert wrote:
>
> It's not working for me either. PyPlot will plot to an external window but 
> I can't seem to get it to plot inline in the notebook. I've even tried 
> other input arguments as well with no luck.
>
> ipython notebook --matplotlib=qt --profile=julia
>

What is the output of:

using PyPlot
PyPlot.backend

?  Note that --matplotlib=qt does nothing in IJulia AFAIK.   If you want to 
force the Qt backend, you should either put that in your .matplotlibrc file 
or do:

using PyCall
pygui(:qt)
using PyPlot

Reply via email to