This issue has been discussed in Julia user groups (https://groups.google.com/d/msg/julia-users/oAWYShR1Pks/CYV8g2DyGeQJ).
Currently, importing Julia modules needs to be done this way:
1. import julia
2. j = julia.Julia()
3. j.call("using Clustering")
4. from julia import Clustering
Although not overly complicated, it would be convenient if the same could be achieved as:
1. import julia
2. from julia import Clustering
which is just like the original example by Jake Bolewski here.
This issue has been discussed in Julia user groups (https://groups.google.com/d/msg/julia-users/oAWYShR1Pks/CYV8g2DyGeQJ).
Currently, importing Julia modules needs to be done this way:
Although not overly complicated, it would be convenient if the same could be achieved as:
which is just like the original example by Jake Bolewski here.