# Beginner installing and trying to use JuliaPro on Windows - extremely slow experience

**URL:** https://discourse.julialang.org/t/beginner-installing-and-trying-to-use-juliapro-on-windows-extremely-slow-experience/7729
**Category:** New to Julia
**Tags:** ttfp
**Created:** [December 13, 2017, 4:32am UTC](https://discourse.julialang.org/t/beginner-installing-and-trying-to-use-juliapro-on-windows-extremely-slow-experience/7729 "2017-12-13T04:32:56Z")
**Posts on this page:** 5
**Page:** 2

<div class="post-metadata">

### Author: ![anon67531922](https://avatars.discourse-cdn.com/v4/letter/a/48db29/32.png) [@anon67531922](https://discourse.julialang.org/u/anon67531922)
#### Post date: [December 23, 2017, 6:08am UTC](https://discourse.julialang.org/t/beginner-installing-and-trying-to-use-juliapro-on-windows-extremely-slow-experience/7729/21 "2017-12-23T06:08:29Z")

</div>

Thanks @rdeits. You are hearing intense stress coming through. Sorry about that #startuplife 😅

I am trying to try Revise.jl and expect it to be awesome but am having [other problems at the moment](https://discourse.julialang.org/t/csv-woes-and-substring-documentation/7938) 😅

PS: If Revise is as awesome as I’m hoping, it’d be great to have it rolled into Base as standard.

Edit: I just got Revise.jl working and it is beautiful 😍 A game changer as far as I’m concerned.

---

<div class="post-metadata">

### Author: ![rdeits](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rdeits/32/286_2.png) [@rdeits](https://discourse.julialang.org/u/rdeits)
#### Post date: [December 23, 2017, 6:16am UTC](https://discourse.julialang.org/t/beginner-installing-and-trying-to-use-juliapro-on-windows-extremely-slow-experience/7729/22 "2017-12-23T06:16:59Z")

</div>

Yeah, I think it would make a great addition to the new stdlib (although that could easily happen post-1.0 since it wouldn’t be a breaking change).

---

<div class="post-metadata">

### Author: ![bernhard](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/bernhard/32/2619_2.png) [@bernhard](https://discourse.julialang.org/u/bernhard)
#### Post date: [December 29, 2017, 8:39am UTC](https://discourse.julialang.org/t/beginner-installing-and-trying-to-use-juliapro-on-windows-extremely-slow-experience/7729/23 "2017-12-29T08:39:07Z")

</div>

I like this idea.  
One could add `Pkg.update()` to this and possibly test all installed packages during such a precompilation run

---

<div class="post-metadata">

### Author: ![chhh](https://avatars.discourse-cdn.com/v4/letter/c/9de053/32.png) [@chhh](https://discourse.julialang.org/u/chhh)
#### Post date: [April 27, 2018, 12:54am UTC](https://discourse.julialang.org/t/beginner-installing-and-trying-to-use-juliapro-on-windows-extremely-slow-experience/7729/24 "2018-04-27T00:54:32Z")

</div>

Could you at least add notifications that things are being recompiled/installed? I’m a first time user of Julia. (got v0.6.2.2 Pro with Juno etc). Even after the initial 1+ minute waits for anything to happen. “using Gadfly” takes 9 seconds. Every time the REPL is restarted. Is it recompiled from scratch every time?

---

<div class="post-metadata">

### Author: ![gcalderone](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/gcalderone/32/1539_2.png) [@gcalderone](https://discourse.julialang.org/u/gcalderone)
#### Post date: [April 27, 2018, 7:47am UTC](https://discourse.julialang.org/t/beginner-installing-and-trying-to-use-juliapro-on-windows-extremely-slow-experience/7729/25 "2018-04-27T07:47:40Z")

</div>

> [@mjmat](#):
>
> Plotting (and interactively zooming, panning) large datasets is an important part of data analysis for me

You may give a try to [Gnuplot.jl](https://github.com/gcalderone/Gnuplot.jl/), which I developed exactly for quick data exploration. It uses [gnuplot](http://gnuplot.info/) as backend (which must be installed separately) and allows to exploit all its 2D/3D functionalities.

E.g., to plot an animated spiral:

```julia
@time using Gnuplot
t = 0.:0.1:100
for a in 30:360
    @time @gsp verb=0 "set view $a, $a" sqrt.(t).*cos.(t) sqrt.(t).*sin.(t) -t "w l"
end

```

Loading the package takes 1.2 seconds on my laptop, the first plot takes 3.6 seconds, and the remaining plots ~0.02 seconds each (1000 points are being drawn each time). For my purposes (I’m an astronomer) is more than enough and I can live with it until a complete and quickly reactive plotting package for Julia will be available.

[Previous page](https://discourse.julialang.org/t/beginner-installing-and-trying-to-use-juliapro-on-windows-extremely-slow-experience/7729.md?page=1)
