We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b8ac73 commit 5ca0100Copy full SHA for 5ca0100
pysrc/juliacall/__init__.py
@@ -193,7 +193,10 @@ def args_from_config(config):
193
try:
194
jl_init = lib.jl_init_with_image__threading
195
except AttributeError:
196
- jl_init = lib.jl_init_with_image
+ try:
197
+ jl_init = lib.jl_init_with_image
198
+ except AttributeError:
199
+ jl_init = lib.jl_init_with_image_file
200
jl_init.argtypes = [c.c_char_p, c.c_char_p]
201
jl_init.restype = None
202
jl_init(
0 commit comments