Questions tagged [juno-ide]

The Juno IDE for the Julia programming language

Juno is an IDE for the Julia programming language, built on top of Atom.

Juno Community

67 questions
7
votes
2 answers

How to create project in Julia and Juno?

I've installed Julia, Atom and Juno. I used to think that before you start coding anything you should create a project, but I can't find "New Project" item in Juno IDE. Does Julia support the notion of project? If yes, how could I create a simple…
kludg
  • 27,213
  • 5
  • 67
  • 118
5
votes
2 answers

Equivalent of the Rstudio `browser()` function in Julia for debugging

I wondered if there is an equivalent to the browser() statement available in RStudio for debugging purposes for Julia (I am using the Juno IDE at the moment). The R function browser() halts execution and invokes an environment browser when it is…
5
votes
1 answer

Julia println() not printing/inconsistent behavior

This is probably a beginner question, but I could not find anything relevant in the docs or basic tutorials. I am using Julia 1.4.2 (that is the latest stable release), and, as suggested in the docs/tutorials, the Atom editor with Juno. This is on…
MindSeeker
  • 560
  • 1
  • 6
  • 18
5
votes
4 answers

Cannot start Julia in Atom (LoadError: ArgumentError: Juno not found in path)

I installed Atom and uber-juno as instructed by Julia's homepage, but when I tried to start Julia in Atom, I was given the following error: ERROR: LoadError: ArgumentError: Juno not found in path in require at loading.jl:249 in include at…
Yuanchu Dang
  • 307
  • 4
  • 14
4
votes
2 answers

How to enable debugging messages in Juno (Julia editor)

The Julia docs are pretty clear on how to enable debugging messages from @debug macros, i.e. run export JULIA_DEBUG=mymodule or export JULIA_DEBUG=all on the command line before starting Julia. However, is there an easy way to enable debugging from…
Sam De Meyer
  • 2,031
  • 1
  • 25
  • 32
4
votes
1 answer

Julia: how to import a module

I'm working with the language Julia and my IDE is juno. Now I want to import my own module. Here is an example: First I create a module file: module my_module export test function test(id, name) print("Your ID:", id, ". Your name: ",…
Yves
  • 11,597
  • 17
  • 83
  • 180
4
votes
1 answer

Juno IDE for Julia, how to interact?

One way to comfortably use an IDE in an interactive language is to interact via the IDE in a command line environment. I am wondering if that is a possibility in Juno. In other words, is there a command line environment as in Matlab, to call…
user25004
  • 1,868
  • 1
  • 22
  • 47
3
votes
1 answer

What is the best way to plot multiple ODE solutions on the same graphic in Julia?

I have an ODE and wanted to solve it and plot the solution for some initial conditions. At the beginning, I decided to make a "for" to increase the value of the initial condition and then plot the solution, one on top of the other. using…
3
votes
2 answers

Juno won't open julia

I am trying to run juno in atom because I hope it will be easier to debug code than it has been for me in vs studio but upon starting julia from juno I received the following error message in an orange box in the top right: Julia could not be…
Angus Campbell
  • 563
  • 4
  • 19
3
votes
2 answers

How to debug Julia code in Atom using Juno?

If yes, would I be able to check the values of the variables then? I am using Juno in atom.
3
votes
2 answers

Julia: running code blocks in Juno / Atom

Whenever I try to 'run block' to run a block of Julia code in Atom, it just runs the currently selected line. I don't understand what's wrong. I've tried all the different delimiters ('##', '# %%', and '# --') and it still isn't recognizing code…
Conor
  • 691
  • 5
  • 14
3
votes
4 answers

Julia plotting issues: label overlap and LaTeXStings expansion

I am having two mutually exclusive issues with my sample plot below. The y-axis label and y-tick labels are on top of each other. I have not been able to find a way to shift either. I would like the size of the plot to expand to accommodate the…
Nathan Boyer
  • 1,412
  • 1
  • 6
  • 20
3
votes
1 answer

fixed packages introduce conflicting requirements for BinDeps:

After installing JuliaPro_v0.6.0.1_build-78.exe from scratch I tried to update packages via Pkg.update() I've got the following Error message: fixed packages introduce conflicting requirements for BinDeps: available versions are 0.0.1,…
3
votes
1 answer

preventing juno-atom from recloning all julia packages

I am new to both julia and atom and trying to set them both up together. I installed juno for atom and am trying to run a julia script. I relocated my package directory for Julia from ~, because at my workplace there is a limit on space in said…
Mohammed Li
  • 823
  • 2
  • 7
  • 22
2
votes
0 answers

Julia language - How to increase the time span in an ODE problem without losing optimization?

I have a large system of about 1000 differential equations, such as function HR(du,u,p,t) du[1,:] .= u[2,:] .- a*u[1,:].^3 .+ b.*u[1,:].^2 .+ I .-u[3,:] .+(ϵ/N)*sum(u[1,:]) du[2,:] .= c .- d.*u[1,:].^2 .- u[2,:] du[3,:] .=…
1
2 3 4 5