[julia-users] Re: Juno stopped working - error message

2015-11-01 Thread Andre P.
Hi all. I upgraded to 0.4.0 and basically lighttables + Jewel stopped working. The errors are pretty mucb as above. - WARNING: LightTable.jl: cannot resize array with shared data in push! at /Applications/Julia-0.4.0.app/Contents/Resources/julia/lib/julia/sys.dylib in

[julia-users] Re: Juno stopped working - error message

2015-09-23 Thread Sisyphuss
Juno works fine for me on 0.4.0-rc1+33 On Friday, September 18, 2015 at 6:35:56 PM UTC+2, Serge Santos wrote: > > Hi, > > Juno was working fine, but I had to restart Juno and now it keeps churning > after successfully connecting with Julia but I cannot use the shell to work > (nothing happen).

[julia-users] Re: Juno stopped working - error message

2015-09-22 Thread Haoran Jiang
Hi Greg, I am new to Julia and Juno, I just installed this software today and I have the same error message as you do, can you tell me what did you do to make it right? this is my Pkg.status. I never had it worked before(since it is my first day install it) so i dont know what file to change

Re: [julia-users] Re: Juno stopped working - error message

2015-09-22 Thread Spencer Russell
Hi Haoran, Try pinning the Compat package by running `Pkg.pin("Compat", v"0.7.0")` If you're running Julia 0.3.11 that should be the newest version that will install, so I'm not sure how you ended up with Compat 0.7.3 (which is currently tagged to be 0.4 and newer). That's a pretty recent change

Re: [julia-users] Re: Juno stopped working - error message

2015-09-22 Thread Haoran Jiang
Hi Spencer: Thanks for the reply! However, I just tried the method you told me but it still doesn't work. I also tried to pinned back everything just like how Serge was doing, but it still doesn't work, here is my status now. 在 2015年9月22日星期二 UTC-7上午11:13:50,Spencer Russell写道: > > Hi Haoran, >

Re: [julia-users] Re: Juno stopped working - error message

2015-09-22 Thread Haoran Jiang
here is the screen copy of my error message,what do you suggest i to do? 在 2015年9月22日星期二 UTC-7下午8:50:00,Spencer Russell写道: > > Can you cut/paste your session with the error into a gist? That might help > track down more specifically what’s causing the issue. > > -s > > On Sep 22, 2015, at

Re: [julia-users] Re: Juno stopped working - error message

2015-09-22 Thread Spencer Russell
Can you cut/paste your session with the error into a gist? That might help track down more specifically what’s causing the issue. -s > On Sep 22, 2015, at 11:46 PM, Haoran Jiang wrote: > > Hi Spencer: > Thanks for the reply! However, I just tried the method you told

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread 'Greg Plowman' via julia-users
Hi, I tried Pkg.pin("JuliaParser", v"0.1.2") but now I get the following error (multiple times). Before this JuliaParser was at version v0.6.3, are you sure we should try reverting to v0.1.2? WARNING: LightTable.jl: `skipws` has no method matching skipws(::TokenStream ) in scopes at

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread Michael Hatherly
The type cannot be constructed error should be fixed on 0.3 by https://github.com/jakebolewski/JuliaParser.jl/pull/25. In the mean time you could Pkg.pin("JuliaParser", v"0.1.2") and see if that fixes the problem on Julia 0.3. (Or a version earlier than v"0.1.2" if needed.) I’ve come across

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread Michael Hatherly
Before this JuliaParser was at version v0.6.3, are you sure we should try reverting to v0.1.2? See the tagged versions https://github.com/jakebolewski/JuliaParser.jl/releases. So that’s the next latest tagged version. You could probably checkout a specific commit prior to the commit that’s

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread Tony Kelman
What's temporarily broken here is some of the packages that Light-Table-based Juno relies on to work. In the meantime you can still use command-line REPL Julia, and while it's not the most friendly interface your code will still run. Your estimation of the Julia ecosystem's robustness is

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread 'Greg Plowman' via julia-users
Hi All, On 2 different PCs where Juno works (almost without error) Pkg.status() reports JuliaParser v0.6.2 On PC that has Juno errors, Pkg.status() reports JuliaParser v0.6.3 Rolling back to JuliaParser v0.1.2 creates different errors. So it seems we need to revert to JuliaParser v0.6.2 I'm not

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread Serge Santos
Hi All, I tried to roll back to JuliaParser v0.6.2 and it didn't work. If someone still manages to successfully run Juno with Julia 0.3.11, can you please send the list of packages with version numbers that does not create any issues with Juno (i.e,, output from Pkg.status()). I was not able

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread 'Greg Plowman' via julia-users
OK I see that second latest tag is v0.1.2 (17 June 2014). Seems a strange jump. But now I understand pinning, I can use a strategy of rolling back Juno-related packages until Juno works again. What other packages would Juno depend on? To help me in this endeavour, I have access to another PC

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread Michael Hatherly
I can’t see LightTable listed in Pkg.status() output in either PC The LightTable module is part of the Jewel package is seems, https://github.com/one-more-minute/Jewel.jl/blob/fb854b0a64047ee642773c0aa824993714ee7f56/src/Jewel.jl#L22, and so won’t show up on Pkg.status() output since it’s

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread Dongning Guo
In case you're stuck, this may be a way out: I installed Atom editor and it seems Julia (v0.5??? nightly build) works with it after installing a few packages. I'm learning to use the new environment ... See https://github.com/JunoLab/atom-julia-client/tree/master/manual On Sunday, September 20,

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread Serge Santos
This is working! I rolled back and pinned all packages with different version numbers and Juno runs again. Thank you so much, Greg, Very much appreciated. On Monday, 21 September 2015 02:09:56 UTC+1, Greg Plowman wrote: > > Serge, > > Below is output of Pkg.status(): > > I had previously tried

[julia-users] Re: Juno stopped working - error message

2015-09-20 Thread Serge Santos
Thank you all for your inputs. It tried your suggestions and, unfortunately, it does not work. I tried Atom but, after a good start and some success, it keeps crashing in middle of a calculation (windows 10). To summarize what I tried with Juno and julia 0.3.11: - Compat v.0.7.0 (pinned) -

[julia-users] Re: Juno stopped working - error message

2015-09-19 Thread Eric Forgy
Reading this thread hurts. I imagine the frustration. I'm still mostly an observer, but as an observer, I see the guys behind the scenes with the skills to address these issues are working super hard to get Juno/Atom (Juno2) at feature parity with the prior Juno. At that point, support for the

[julia-users] Re: Juno stopped working - error message

2015-09-19 Thread JKPie
I have the same problem, I have spent couple of hours reinstalling Julia and Juno on Windows and Linux with no result. The code works fine, when I call it from command line directly. Please help it is freezing my work :/ J

[julia-users] Re: Juno stopped working - error message

2015-09-19 Thread Serge Santos
I tried to solve the problem by running Julia 0.4.0-rc2 instead of Julia 0.3.11. I manage to execute a few commands in Juno, but juno/julia is stuck as before. The error message is slightly different though: - WARNING: LightTable.jl: cannot resize array with shared data in push!

[julia-users] Re: Juno stopped working - error message

2015-09-18 Thread Dongning Guo
My Juno stopped working too. Looks like I'm seeing the same error messages. It didn't help to reinstall the latest bundle or a previous version I had (which worked fine before). Tried a few things but nothing worked. On Friday, September 18, 2015 at 5:38:16 PM UTC-5, Serge Santos wrote: > >

[julia-users] Re: Juno stopped working - error message

2015-09-18 Thread Serge Santos
Thank you, Nils. I tried Pkg.checkout("JuliaParser"), but it didn't work. Very much appreciate if you have another idea. I will try with JunoAtom in the hope to be able to continue working. On Friday, 18 September 2015 20:42:33 UTC+1, Nils Gudat wrote: > > I'd say just switch to JunoAtom,

[julia-users] Re: Juno stopped working - error message

2015-09-18 Thread Nils Gudat
I'd say just switch to JunoAtom, it's much nicer :) But in all seriousness, these "utf8sizeof" related bugs can often be solved by doing Pkg.checkout("JuliaParser")

[julia-users] Re: Juno stopped working - error message

2015-09-18 Thread Serge Santos
I also tried on my iMac (currently on Windows) and it does not work either. Both installations are independent. The error message is: WARNING: LightTable.jl: type cannot be constructed in utf8sizeof at C:\Users\Serge\.julia\v0.3\JuliaParser\src\lexer.jl:322 in skip_to_eol at