Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
29 views

I want to be able to code in a jupyter environment, using Julia, with multiple people at the same time. I know there's visual studio with live share, but that depends on one person sharing their code. ...
Timo Lautenschlager's user avatar
1 vote
1 answer
58 views

After running compile IJulia in repl get the following error: I tried downgrading to previous versions, but that did nothing. I recently upgraded to the most recent version of jupyter notebook and ...
Mstislav Keldysh's user avatar
0 votes
1 answer
117 views

I have a Julia DataFrame with one column being dates and another column being sales data. At each date entry, I want the sum of the total sales in the last 360 days exactly. Haven’t tried anything ...
mpgk444's user avatar
  • 27
0 votes
0 answers
46 views

I'm trying to optimize a road trip across the U.S. in an iJulia notebook. I'm currently having issues with subtours. Instead of creating one fluid trip, the solution jumps around from place to place. ...
Liamilus's user avatar
2 votes
1 answer
470 views

I am having trouble installing IJulia in Julia 1.9.1 inside a mamba environment. The crux of the issue seems to be the compiler not being able to find MbedTLS even though it is installed Looking for: [...
Sudoh's user avatar
  • 370
0 votes
1 answer
126 views

I'm trying to load a image in Julia but it gives me the error: ERROR: UndefVarError: load not defined Stacktrace: 1 top-level scope @ c:\folde1\folder2\project.jl My code is: using TestImages, ...
Vitor Boldrin's user avatar
0 votes
1 answer
120 views

I want to import and use functions, structs, and modules from my local julia project under active development named MyProject.jl. If I cd to my project directory, then activate the project, then call ...
BAR's user avatar
  • 17.5k
1 vote
1 answer
262 views

julia> using Pkg julia> Pkg.add("IJulia") Installing known registries into `~/.julia` ... By default: Installs known registries into ~/.julia Install kernel into ~/.local/share/...
ryanhill1's user avatar
  • 145
1 vote
1 answer
312 views

I want to write a module in the local directory, load it into Jupyter and test it. I put the module into file MyModule.jl: module MyModule export my_function my_function() = () end Then I load it ...
Yrogirg's user avatar
  • 2,403
1 vote
2 answers
892 views

I'm currently learning Julia and i'm trying to translate a Fortran77 code, but i got this error message and i can't see from where the issue is coming from. using DelimitedFiles, DataFrames function ...
Henrique's user avatar
2 votes
1 answer
212 views

I am new to the IJulia platform. I am using jupyter notebook (Anaconda). I was trying to create a julia module in jupyter notebook. My functions are in different cells. Is it necesssery that all the ...
Bibin Jose's user avatar
2 votes
2 answers
974 views

My julia notebooks were working fine but today this "kernel error" appeared and I don't know how to deal with this: Traceback (most recent call last): File "/home/antonio/...
Prometeu's user avatar
3 votes
1 answer
1k views

I'm using Julia v1.5.2 and I got the below error when I tried to install EvalMetrics: Pkg.add("EvalMetrics") I even tried using the Pkg manager instead of using import Pkg, but it doesn't ...
Gnonguichi's user avatar
2 votes
2 answers
883 views

I am running Julia through (Anaconda) Jupyter notebook. When I run a cell like this 5 + 6 3 + 17 The output is [out:] 20 How can I print out the output of all lines, i.e., [out:] 11 [out:] 20
Rudinberry's user avatar
2 votes
1 answer
232 views

For example: function main() function doit() A = ones(Int, 2) return A end doit() display(A) A = [1, 2, 3] display(A) doit() display(A) Also what if the nested function has two or three ...
Ghulam Mohyuddin's user avatar
1 vote
0 answers
176 views

Im writing a script to calculate the Lyapunov exponent of a particular system with varying parameter. The code is ungodly slow and it hangs every so often when running on Jupyter Notebook. Any ...
Stev L's user avatar
  • 11
2 votes
1 answer
48 views

Have a pandas dataframe with 2 columns: tag and message: tag | message ["string1","sttring2"] | some text ["string","string3"] | ...
pouchewar's user avatar
  • 409
2 votes
0 answers
324 views

One of my ipynb files isn't opening anymore. Whenever I would try to acccess it on Jupyter Notebook, it would just say : Error Loading Notebook Permission denied: [File name].ipynb I can launch the ...
user14640997's user avatar
4 votes
1 answer
805 views

I have my own Julia package called foo which is stored in /private/tmp/foo and looks like: foo ├── Project.toml └── src └── foo.jl I'd like to use it in an experiment I'm going to run. As such I ...
this_josh's user avatar
  • 393
4 votes
0 answers
373 views

I apologize if it is a trivial question, but I searched and I could not find the answer. My situation is the following: I have access to a server through ssh tunnelling. The server has Julia ...
Thomas's user avatar
  • 51
0 votes
1 answer
5k views

The following is the code I wrote. I have no idea why the error happened and how to solve it.
CHIA YI's user avatar
  • 107
1 vote
1 answer
1k views

I need some help due to my research about that topic was not satisfying. I hope you guys can help me out. Lets say we have a DataFrame like: df = DataFrame(A = 1:10, B = 11:20, C = rand(10)) But now ...
Coco's user avatar
  • 77
1 vote
0 answers
273 views

coordinate_distance(x,z) = abs.(x .- z) square1(x) = sum(coordinate_distance(x,z).^2) using Plots LB,UB = 0,20 # Defining Lowerboud and Upperbound plot(square1, LB, UB, legend=false) scatter!(z, [...
Pradnk77's user avatar
2 votes
1 answer
1k views

I am using Julia. I am trying to get some greek characters in Jupyter notebooks. First I downloaded the latest version of Julia 1.6.2 For the jupyter connection I used anaconda, in julia repl i put ] ...
Jorge Paredes's user avatar
1 vote
0 answers
221 views

Similar to this issue I have installed Jupyter Notebook with IJulia.notebook(), which works perfectly fine when I run it with '.../.julia/conda/3/bin/jupyter-notebook'. However, when I attempt to run ...
user15620366's user avatar

1
2 3 4 5