-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plot displaying - just getting PyObject #337
Comments
I've just encountered this problem on windows 10. It seems to be independent of the python environment; I've tried the interpreter installed automatically by Conda.jl, and also manually installed via the standard anaconda installer in both python2.7 and python 3.6 flavours. I'm not sure why this is happening yet, but I found a workaround which is to call using PyPlot
pygui(true)
plot(randn(100)) |
Further version information regarding my setup, and a more complete demo:
|
Ok, here's why this was happening, at least for me. Because I'm on windows 10, I've applied the workaround from #334 (comment) in order to pin to the old version 2.3.1. But in julia-0.6 So |
Furthermore, having manually installed python 3.6 via anaconda and set |
thanks |
Probably it just means that PyPlot is not finding a working backend. e.g. look at |
I'm using julia v0.6.0 in atom v1.22.1. I've installed pyplot after running ENV["PYTHON"]="". If I run:
using PyPlot
plot(1:5,(1:5).^2)
It returns a PyCall.PyObject and address, without displaying. Any ideas?
The text was updated successfully, but these errors were encountered: