forio / julia-studio

An IDE for the Julia Language
forio.com/products/julia-studio
GNU General Public License v3.0
223 stars 48 forks source link

PyPlot / Matplotlib Issue #224

Open cortner opened 10 years ago

cortner commented 10 years ago

PyPlot package without difficulties Runs without problems within Julia But within Julia Studio I get the following message:

""" julia> using PyPlot WARNING: No working GUI backend found for matplotlib. Loading help data... Warning: Possible conflict in library symbol dtrtri Warning: Possible conflict in library symbol dgetri Warning: Possible conflict in library symbol dgetrf_ """

(the last three warnings I also get in "plain julia" in terminal)

System: Julia Studio 0.4.4 Julia 0.2.1 MacOSX 10.9.2

cortner commented 10 years ago

I also tested this with the Julia packaged from JuliaStudio, by starting it from the command line

$ /Applications/JuliaStudio.app/julia/bin/julia-readline ; exit; () | A fresh approach to technical computing () | () () | Documentation: http://docs.julialang.org | |_ | Type "help()" to list help topics | | | | | | |/ ` | | | | || | | | (| | | Version 0.2.0 (2013-11-16 23:44 UTC) / |_'||_|'_| | Official http://julialang.org release |__/ | x86_64-apple-darwin12.5.0

julia> using PyPlot Loading help data... Warning: Possible conflict in library symbol dtrtri Warning: Possible conflict in library symbol dgetri Warning: Possible conflict in library symbol dgetrf_

julia> x = linspace(0,1,100); y = cos(2_pi_x); plot(x,y) 1-element Array{Any,1}: PyObject <matplotlib.lines.Line2D object at 0x11565e610>

This creates the correct figure. The same code creates the correct figure if I use the Julia distribution (0.2.1). The same code, run from the JuliaStudio Windows gives the error (or, WARNING) message from my original post.

julia> using PyPlot WARNING: No working GUI backend found for matplotlib. Loading help data... Warning: Possible conflict in library symbol dtrtri Warning: Possible conflict in library symbol dgetri Warning: Possible conflict in library symbol dgetrf_

jimmythekid commented 10 years ago

Im having the same issue with Gadfly within Julia Studio but it seems to be rendering sometimes.. then from command line it isnt working at all...