# Installing Plots.jl

**URL:** https://discourse.julialang.org/t/installing-plots-jl/6345
**Category:** General Usage
**Tags:** plotting
**Created:** [October 9, 2017, 9:36am UTC](https://discourse.julialang.org/t/installing-plots-jl/6345 "2017-10-09T09:36:22Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Philippe\_Maincon](https://avatars.discourse-cdn.com/v4/letter/p/a4c791/32.png) [@Philippe\_Maincon](https://discourse.julialang.org/u/Philippe_Maincon)
#### Post date: [October 9, 2017, 9:36am UTC](https://discourse.julialang.org/t/installing-plots-jl/6345/1 "2017-10-09T09:36:22Z")

</div>

Hi,

I havejust installed JuliaPro 0.6 (Windows 7), and I wish to use the Plots package. So I type

```julia
Pkg.add("Plots")
INFO: 
Cloning cache of PlotThemes from https://github.com/JuliaPlots/PlotThemes.jl.git
INFO: Cloning cache of PlotUtils from https://github.com/JuliaPlots/PlotUtils.jl.git
INFO: Cloning cache of Plots from https://github.com/JuliaPlots/Plots.jl.git
INFO: Cloning cache of RecipesBase from https://github.com/JuliaPlots/RecipesBase.jl.git
INFO: Installing PlotThemes v0.1.4
INFO: Installing PlotUtils v0.4.4
INFO: Installing Plots v0.13.1
INFO: Installing RecipesBase v0.2.3
INFO: Building Plots
INFO: Cannot find deps/plotly-latest.min.js... downloading latest version.
INFO: Package database updated

Pkg.update()
INFO: Updating METADATA...
INFO: Computing changes...
INFO: No packages to install, update or remove
INFO: Precompiling module RecipesBase.
INFO: Precompiling module PlotUtils.
INFO: Precompiling module PlotThemes.
WARNING: 
No working GUI backend found for matplotlib
done

```

Note the warning. I do have Ananconda installed, in

```julia
C:\Users\myudername\AppData\Local\Continuum\Anaconda3

```

which I thought should contain Pyplot. How to I point the Plots package to Anaconda and Pyplot? What did I miss?

: )

Philippe

---

<div class="post-metadata">

### Author: ![Philippe\_Maincon](https://avatars.discourse-cdn.com/v4/letter/p/a4c791/32.png) [@Philippe\_Maincon](https://discourse.julialang.org/u/Philippe_Maincon)
#### Post date: [October 9, 2017, 10:13am UTC](https://discourse.julialang.org/t/installing-plots-jl/6345/2 "2017-10-09T10:13:20Z")

</div>

Case closed!

```julia
Pkg.add("PyPlot")
Pkg.update()

```

---

<div class="post-metadata">

### Author: ![chdlkl](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/chdlkl/32/4835_2.png) [@chdlkl](https://discourse.julialang.org/u/chdlkl)
#### Post date: [August 7, 2018, 9:48am UTC](https://discourse.julialang.org/t/installing-plots-jl/6345/3 "2018-08-07T09:48:21Z")

</div>

```julia

using Plots
x = [i for i in 1:10]
y = rand(10)
plot(x,y)

my problem is following:
ERROR: error compiling _do_plot_show: error compiling _display: could not load library "libGR.dll"
The specified module could not be found.

Stacktrace:
 [1] _plot!(::Plots.Plot{Plots.GRBackend}, ::Dict{Symbol,Any}, ::Tuple{Array{Int64,1},Array{Float64,1}}) at C:\Users\luk\.julia\v0.6\Plots\src\plot.jl:246
 [2] #plot#212(::Array{Any,1}, ::Function, ::Array{Int64,1}, ::Vararg{Any,N} where N) at C:\Users\luk\.julia\v0.6\Plots\src\plot.jl:58
 [3] plot(::Array{Int64,1}, ::Array{Float64,1}, ::Vararg{Array{Float64,1},N} where N) at C:\Users\luk\.julia\v0.6\Plots\src\plot.jl:52

what should i do ?

```

---

<div class="post-metadata">

### Author: ![egoal](https://avatars.discourse-cdn.com/v4/letter/e/ecc23a/32.png) [@egoal](https://discourse.julialang.org/u/egoal)
#### Post date: [September 9, 2018, 2:53pm UTC](https://discourse.julialang.org/t/installing-plots-jl/6345/4 "2018-09-09T14:53:33Z")

</div>

the same for me, do you solved?
