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
Proposed temporary workaround is to just use Main.seval() for now, but as noted in documentation it would be great to have the ability to call functions directly from imported julia modules.
The text was updated successfully, but these errors were encountered:
newmodule creates a new module with the given name, unrelated to any other module with that name. It's similar to doing module Pkg; end in the Julia REPL.
The current recommended way to import a module is to use seval.
It seems that in python, using command
juliacall.newmodule()
does not update the python namespace after importing a new module in julia.MWE:
Proposed temporary workaround is to just use
Main.seval()
for now, but as noted in documentation it would be great to have the ability to call functions directly from imported julia modules.The text was updated successfully, but these errors were encountered: