You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed julia from the ubuntu repository, and I also tested compiling the version 0.3, and it still does not work.
I'm trying to run the program "test_core.py" and I get:
python test_core.py
ERROR: dlpath not defined
in process_options at client.jl:242
in _start at client.jl:389
Traceback (most recent call last):
File "test_core.py", line 7, in<module>
julia = Julia()
File "/usr/local/lib/python2.7/dist-packages/julia/core.py", line 228, in __init__
raise JuliaError('error starting up the Julia process')
julia.core.JuliaError: error starting up the Julia process
The same error appears when I just try (inside python)
importjuliajulia.Julia()
The text was updated successfully, but these errors were encountered:
Sys.dlpath was introduced in Julia 0.3. So probably you are not using it: you need to modify your PATH environment variable so that julia gives you Julia 0.3 or later, not Julia 0.2.
I installed julia from the ubuntu repository, and I also tested compiling the version 0.3, and it still does not work.
I'm trying to run the program "test_core.py" and I get:
The same error appears when I just try (inside python)
The text was updated successfully, but these errors were encountered: