# JuliaPro Plotting in Juno is not functional

**URL:** https://discourse.julialang.org/t/juliapro-plotting-in-juno-is-not-functional/3002
**Category:** New to Julia
**Created:** [April 1, 2017, 7:03pm UTC](https://discourse.julialang.org/t/juliapro-plotting-in-juno-is-not-functional/3002 "2017-04-01T19:03:11Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![ehughes](https://avatars.discourse-cdn.com/v4/letter/e/59ef9b/32.png) [@ehughes](https://discourse.julialang.org/u/ehughes)
#### Post date: [April 1, 2017, 7:03pm UTC](https://discourse.julialang.org/t/juliapro-plotting-in-juno-is-not-functional/3002/1 "2017-04-01T19:03:11Z")

</div>

I just installed JuliaPro (0.5.1.1) on a Windows 10 Box.

I tried this in the Atom editor:

import PyPlot

x = linspace(0,2_pi,1000); y = sin(3_x + 4_cos(2_x));

plot(x,y)

Got the result:

WARNING: No working GUI backend found for matplotlib

I can open a julia REPL and this code works. Is plotting not supported?

---

<div class="post-metadata">

### Author: ![mgiugliano](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mgiugliano/32/5818_2.png) [@mgiugliano](https://discourse.julialang.org/u/mgiugliano)
#### Post date: [May 12, 2017, 1:34pm UTC](https://discourse.julialang.org/t/juliapro-plotting-in-juno-is-not-functional/3002/2 "2017-05-12T13:34:30Z")

</div>

I have just installed JuliaPro-0.5.1.1 (OSX) and PyPlot works (see the code below) but without the integration in the Atom editor: the figure appears as a stand alone window (in background, actually).

using PyPlot  
x = 0:0.001:6  
y = sin(x)  
plot(x,y)

If I am not wrong, only Gadfly is supported in terms of seamless integration in Atom (or at least this was the situation last time I tried to look into it).  
Hope it helps.

---

<div class="post-metadata">

### Author: ![ChrisRackauckas](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/chrisrackauckas/32/77_2.png) [@ChrisRackauckas](https://discourse.julialang.org/u/ChrisRackauckas)
#### Post date: [May 12, 2017, 1:57pm UTC](https://discourse.julialang.org/t/juliapro-plotting-in-juno-is-not-functional/3002/3 "2017-05-12T13:57:01Z")

</div>

> [@mgiugliano](#):
>
> If I am not wrong, only Gadfly is supported in terms of seamless integration in Atom (or at least this was the situation last time I tried to look into it).

Plots.jl makes PyPlot support the Juno plotpane.

---

<div class="post-metadata">

### Author: ![RaulDurand](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rauldurand/32/2044_2.png) [@RaulDurand](https://discourse.julialang.org/u/RaulDurand)
#### Post date: [August 9, 2017, 3:37pm UTC](https://discourse.julialang.org/t/juliapro-plotting-in-juno-is-not-functional/3002/4 "2017-08-09T15:37:51Z")

</div>

> [@ehughes](#):
>
> WARNING: No working GUI backend found for matplotlib

I have the same problem. I can’t plot in Juno nor in the REPL.  
What is missing?
