Hello,
I have Julia 0.4... installed, and just recently did a Pkg.update().
Now when I run notebook(), it doesn't read settings from my
..\user\.ipython\profile_julia profile.
I can run
ipython notebook --profile=julia
from the command line and everything works fine. I rebuilt the IJulia
package, and tried to rerun Pkg.update(), but for whatever reason it
doesn't run the profile_julia when I type
notebook()
I looked in IJulia.jl, and saw the notebook function is
function notebook(jupyter=find_jupyter()[1])
inited && error("IJulia is already running")
run(`$jupyter notebook`)
end
The $jupyter variable just ends up being "ipython" , and it seems for
running ipython you can't specify the profile prior to notebook. Am I
making a mistake in a configuration file somewhere,or would it help
to be able to specify the profile in the notebook function?
Thanks,
Jason