Hi,
I want to try JuliaCall
but I’m finding the instructions extremely difficult to understand. This is my second attempt so I don’t remember well what I did in the first time. This time I managed to reach the point where I have this, which doesn’t look wrong since I want to try GMT.jl from Python.
>>> juliapkg.status(target=None)
JuliaPkg Status
C:\programs\miniconda3\juliapkg.json
Julia 1.8.0 @ C:\programs\julia-1.8\julia.BAT
Packages:
GMT: {'uuid': '5752ebe1-31b9-557e-87aa-f909b540aa54'}
But now how do I use the package? I have done from juliacall import Main as jl
, but now how I start using it? How to call its functions? All I get is errors like:
>>> jl.using("GMT")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\joaqu\.julia\packages\PythonCall\H8yA3\src\jlwrap\any.jl:167", line 18, in __getattr__
AttributeError: Julia: UndefVarError: using not defined
Thanks