[julia-users] Re: Problem with "using PyPlot"

2015-11-23 Thread Steven G. Johnson
Are you on Ubuntu and using the Julia binary there? If so, it looks like you are running into https://github.com/stevengj/PyCall.jl/issues/65 (see the discussion at the very end) due to a conflict between the openblas in Ubuntu and the openblas that numpy wants to link to. See the issue f

[julia-users] Re: Problem with "using PyPlot"

2015-11-24 Thread Ilya Orson
I am on Ubuntu 14.04 and using the Julia PPA. The problem discussed in the issue is the same I have indeed. A solution that worked for me was to uninstall anaconda and install everything from the pip-python manager and then set Julia ENV["PYTHON"]to detect that python path. Thanks!