pyjulia
pyjulia copied to clipboard
python interface to julia
I also get a warning for PyCall by running julia.install() julia.install() [ Info: Julia version info Julia Version 1.6.2 Commit 1b93d53fc4 (2021-07-14 15:36 UTC) Platform Info: OS: Linux (x86_64-pc-linux-gnu) Ubuntu...
Hello, I installed Julia 1.5.2 and tried to call it from Python. It failed on the "Julia( compiled_modules=False )" To reproduce in Python call ``` >>> import julia >>> julia.install()...
I've been trying to conda package a python software I wrote that's dependent on pyjulia and I've been trying to write a conda recipe for pyjulia. This comes with the...
Running this simple python script ``` from julia import Julia import numpy as np ju = Julia() ju.include("LJ.jl") for j in range(100000): e = ju.LJ.energy(np.random.rand(10,3)) if j % 50 ==...
I propose to test the path(s) set in the environment variable `PYTHONPATH` to be considered as candidates for the `julia-py` script. Consider the case when `pyjulia` has been installed in...
I was trying to explore what Python functions are available as submodules of `Main`, especially the `PyCall` module, but apparently that isn't possible? Or is this a bug? ``` Python...
It appears as if providing a custom julia script `precompile.jl` with statements to execute has no effect on the buildt system image. I believe this is due to the command-line...
PyCall allows Julia to call Python code without copying objects from Julia to Python - e.g. you can create a dict or an array in Julia and pass it to...
A possible solution to #437 `jl_init_with_image` and `jl_init_with_image__threading` are no longer exposed functions in the Julia 1.6 library, whereas `jl_init__threading` seems to work. This also requires setting the DYLD_LIBRARY_PATH so...
I am trying to use pyjulia for the first time on ubuntu 20.04. julia.install() looks to work perfectly. However I get: ``` from julia import Base --------------------------------------------------------------------------- CalledProcessError Traceback (most...