juno-ide

Debugging with Debugger not working in Julia when using Juno / Atom

末鹿安然 提交于 2019-12-13 04:27:04
问题 I'm trying to step through a function in Julia when using the Juno IDE (i.e., Atom with the Julia extension). I'm using Julia 1.1 and the Debugger package. I'm trying to enter the function as follows: @enter myfunc(5) And when I run this, it opens the REPL to the correct function in debug mode, but when I try to press c or n to continue or run to the next function I get the following: no previous command executed Also, when I press ` (backtick) to enter interactive mode, it doesn't really

Julia : Dataframes packages having trouble to convert column containing both int and float

﹥>﹥吖頭↗ 提交于 2019-12-13 03:48:50
问题 I'm a R user with great interest for Julia . I don't have a computer science background. I just tried to read a 'csv' file in Juno with the following command: using CSV using DataFrames df = CSV.read(joinpath(Pkg.dir("DataFrames"), "path/to/database.csv")); and got the following error message CSV.CSVError('error parsing a 'Int64' value on column 26, row 289; encountered '.'" in read at CSV/src/Source.jl:294 in #read#29 at CSV/src/Source.jl:299 in stream! at DataStreams/src/DataStreams.jl:145

Julia's execution using Juno gets blocked because of not being able to access the console

给你一囗甜甜゛ 提交于 2019-12-11 02:02:22
问题 In another question: Juno IDE for Julia, how to interact? One of the answers stated: You can't enter commands into the console in Juno--that's for displaying output. Commands can be submitted from within the editor by setting your cursor in the line to submit and pressing Ctrl+Enter or Shift+Enter. The value will then be displayed in a small popup next to the line and the output will be printed to the console if you have the console visible. Note that the inability to use the console as you

Juno IDE for Julia, how to interact?

不羁岁月 提交于 2019-12-10 15:59:35
问题 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 functions, give initial values, and run expressions. If so what is the way to access it? Note: There is a console window in Juno, but I can't find a way to insert my commands inside that. 回答1: Note: The question and this answer apply to the version of