Re: [julia-users] Re: problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-08 Thread Kostas Oikonomou
It seems that the problem is in Blink/src/AtomShell/process.jl. The error report indicates line 62 there. So I tried running some lines by hand: julia> port() = rand(2_000:10_000) # line 57 port (generic function with 1 method) julia> p = port() # lin

Re: [julia-users] Re: problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-08 Thread Tom Breloff
Sounds like progress. You might try restarting Julia, and also try the plotting command a few times. Blink is known to have a race condition on startup that sometimes produces this sort of error. On Tue, Nov 8, 2016 at 1:02 PM, Kostas Oikonomou < kostas.oikonomo...@gmail.com> wrote: > Thanks.

[julia-users] Re: problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-08 Thread Kostas Oikonomou
Thanks. Before reading your post, I had added an "if is_bsd()" statement to Blink/src/AtomShell/install.jl, and I set arch to "ia32" as FreeBSD has default support for 32-bit Linux. The result is that when I redo AtomBlink.AtomShell.install(), the 32-bit Linux binary is installed. However, w

[julia-users] Re: problems (and some fixes) for using Plots and PlotlyJS on FreeBSD

2016-11-08 Thread randmstring
I don't think Electron works on FreeBSD (see here ), but Blink requires it. You could try using the Linux binaries by changing this line to be is_linux() || is_bsd()a