pyjulia icon indicating copy to clipboard operation
pyjulia copied to clipboard

python interface to julia

Results 134 pyjulia issues
Sort by recently updated
recently updated
newest added

This line: jl.eval('run_ac_opf("pglib_opf_case5_pjm.m", IpoptSolver())') gives a broken pipe error: JuliaError: Exception 'IOError: write: broken pipe (EPIPE)' occurred while calling julia code: run_ac_opf("pglib_opf_case5_pjm.m", IpoptSolver()) But only if I've already run the...

HI, I'm using python 3.7.6 and Julia 1.4.1 After installing Julia package in python I run: ``` import julia jl = julia.Julia() ``` I get this error message: ``` ---------------------------------------------------------------------------...

I've been trying to create a custom system image on OS X with conda python. It seems to build fine. However, pyjulia gives me an error: ``` RuntimeError: It seems...

bug

Hello, I try to use PyJulia API to get and call Julia function, but it can not get function pointer. The python I use is 3.7.4, Julia is 1.4.2 and...

Hello, firts thanks for the efort to bing this on. I have follow the installation instruction of the page (https://pyjulia.readthedocs.io/en/latest/installation.html) but whe i test the program I get the fowwing...

I am trying to build PyJulia on my system but get the following error when trying to install via Python: ``` >>> import julia >>> julia.install() ERROR: LoadError: ArgumentError: Package...

When I wrote https://github.com/JuliaPy/pyjulia/pull/262, it relied on taking `py"..."` expressions inside of `%julia` blocks and rewriting them to some custom code via [`make_pyeval`](https://github.com/JuliaPy/pyjulia/blob/ca04b008136a592c6234be752c271fc366c37d99/src/julia/pyjulia_helper.jl#L51-L56) which was basically a poorman's version of...

When installing pyjulia in my home dir using python3 -m pip install --user julia as recommended in the pyjulia documentation, I'm unable to build a sysimage with python3 -m julia.sysimage...

Currently using Julia 1.3.1 and installed pyjulia via `python3 -m pip install --user julia` Per instructions from this [link](https://pyjulia.readthedocs.io/en/latest/sysimage.html), I am trying to run `python3 -m julia.sysimage sys.so` to obtain...

I have Julia v.0.6.4 downloaded and I accomplish to link it using PyCall v.0.4.1 by running ``` import julia julia.install(julia="/home/developer/JuliaPro-0.6.4.1/Julia/bin/julia") ``` Once I have that I do not see in...