Re: [julia-users] newbie: Problem installing IJulia

2014-12-16 Thread Eric Forgy
Hi Mike, Thanks for your help. It is working now. I'm not only new to Julia and Python, but also Mac OS. The path I inserted was not a folder, but nevertheless was wrong. It was launching Julia, but not the correct way, i.e. it was launching a new shell window. Here is the correct path (which

Re: [julia-users] newbie: Problem installing IJulia

2014-12-16 Thread Michael Hatherly
Glad to help. — Mike On Tuesday, 16 December 2014 12:43:40 UTC+2, Eric Forgy wrote: Hi Mike, Thanks for your help. It is working now. I'm not only new to Julia and Python, but also Mac OS. The path I inserted was not a folder, but nevertheless was wrong. It was launching Julia, but not

[julia-users] newbie: Problem installing IJulia

2014-12-15 Thread Eric Forgy
Hi everyone, I am new to Julia (and Python for that matter) and, after watching some nice MIT lectures on YouTube, was inspired to try to install IJulia, but am having some difficulties. I'm on a MacBook Pro running OS X Yosemite (10.10.1). I tried to follow the instructions here: -

Re: [julia-users] newbie: Problem installing IJulia

2014-12-15 Thread João Felipe Santos
This is not a problem with IJulia, but with Anaconda Python on Mac specifically. Try setting these environment variables before calling notebook(): using IJulia ENV[“LC_ALL”] = “en_US.UTF-8” ENV[“LANG”] = “en_US.UTF-8” notebook() I don’t know exactly the source of this issue and not everyone

Re: [julia-users] newbie: Problem installing IJulia

2014-12-15 Thread Eric Forgy
Wow. Thank you João. IJulia seems to be working now. I've really been struggling all evening. After not being able to get IJulia to work, I tried to install LightTable with Juno. After modifying user.behaviors, I restart LT and get an error: Couldn't connect to Julia. A window pops up and

Re: [julia-users] newbie: Problem installing IJulia

2014-12-15 Thread João Felipe Santos
I do not have any experience with LightTable, so I’ll let the experts answer this one :) Did you try Sublime Text 3? I had no problems using it with this package: https://sublime.wbond.net/packages/IJulia. However, I ended up using a combination of Vim + Julia REPL + IJulia for my interactive

Re: [julia-users] newbie: Problem installing IJulia

2014-12-15 Thread Eric Forgy
Hi Mike, Thanks for the help. Here is the contents of my user.behaviors: [:app :lt.objs.style/set-skin dark] [:app :lt.objs.plugins/load-js user_compiled.js] [:app :lt.objs.langs.julia/julia-path /Applications/Julia-0.3.3.app/Contents/MacOS/Julia] ;; The editor tag is applied to all

Re: [julia-users] newbie: Problem installing IJulia

2014-12-15 Thread Eric Forgy
Oops. I clipped the top of user.behaviors. Here are the full contents: ;; User behaviors ;; - ;; Behaviors are stored as a set of diffs that are merged together ;; to create the final set of functionality that makes up Light Table. You can ;; modify these diffs to

Re: [julia-users] newbie: Problem installing IJulia

2014-12-15 Thread Michael Hatherly
Is the path you’ve set: [:app :lt.objs.langs.julia/julia-path /Applications/Julia-0.3.3.app/Contents/MacOS/Julia] a folder or is it the actual julia executable? From the install guide http://junolab.org/docs/installing.html the path should be the executable rather than the Julia folder. I’m