JuliaGizmos / Interact.jl

Interactive widgets to play with your Julia code
Other
520 stars 75 forks source link

Problems with Interact #384

Open ghost opened 3 years ago

ghost commented 3 years ago

Dear all, I just to install Julia 1.5.3 from oficial site (Julia Pro). I have installed the packages Plots and Interact. Plots, alone, works perfectly. However, when I run:

using Plots, Interact
plotly()
xh = range(-2,2,length=200)
@manipulate for α=range(-5,5,length=20)
    y=sin.(α*xh);
    plot(xh,y,label=false)
end

an enormous bug appear. To overcome this, I need to restart Julia. The error is shown in the print below: print1 and leave to link: https://github.com/JunoLab/atom-julia-client/issues/773 I have impression that Julia is busy (see the picture). To overcome this, I need to restar Julia. All packages are presented below:

  [c52e3926] Atom v0.12.25 ⚲
  [5789e2e9] FileIO v1.4.5
  [2e9cd046] Gurobi v0.9.7
  [7073ff75] IJulia v1.23.1
  [c601a237] Interact v0.10.3
  [033835bb] JLD2 v0.3.2
  [4076af6c] JuMP v0.21.5
  [e5e0dc1b] Juno v0.8.4 ⚲
  [2fda8390] LsqFit v0.12.0
  [4722fa14] PkgAuthentication v1.1.0
  [91a5bcdd] Plots v1.10.1
  [44d3d7a6] Weave v0.10.6
  [37e2e46d] LinearAlgebra
  [de0858da] Printf
  [9a3f8284] Random
  [10745b16] Statistics

Could anyone help me please?