pyjulia
pyjulia copied to clipboard
python interface to julia
I have a program that spawns a large number of sub-processes and each sub-process is having its own Julia object created using `pyjulia `and `diffeqpy`. It works fine for around...
I am trying to pass a symbol to the hclust function from http://juliastats.github.io/Clustering.jl/stable/hclust.html ``` from julia import Clustering as C result = hclust(costs, linkage=":ward") ``` I keep getting `TypeError: in...
``` python3 -m julia.sysimage sys.so ERROR: LoadError: cannot assign a value to variable Pkg.Pkg from module Main Stacktrace: [1] top-level scope @ ~/code/github/JuliaPy/pyjulia/src/julia/install-packagecompiler.jl:7 in expression starting at /home/username/code/github/JuliaPy/pyjulia/src/julia/install-packagecompiler.jl:7 Command '['julia',...
I am currently running into an issue using pyjulia. I am performing a nonlinear optimization of an objective function that requires some heavy numerical integration within the objective function. When...
`import julia import Shearlab #reload("Shearlab") n = 512; #data = rand(n,n); #sizeX = size(data,1); #sizeY = size(data,2); # Set the variables for the Shearlet trasform #rows = sizeX; #cols =...
Is it possible to redirect warnings from Julia code to warnings in Python? Currently, warnings from Julia are redirected as stdout in python. I was wondering if we could redirect...
When I try to install and work with Python3.9.3 with Julia 1.6, the command > julia.install() works well, but later > from julia import Base # or `Pkg`, `Main` ..etc...
Hi all. I appreciate the efforts to improve Python Julia interconnection. I am using `Julia 1.6.1` and `Python 3.8.8` (not anaconda installation) on Windows. The interconnection is working very well....
`STATUS_ACCESS_VIOLATION` (3221225477 = 0xC0000005) from `test_import_without_setup` in Windows: > ```Command '['D:\\a\\pyjulia\\pyjulia\\.tox\\py\\Scripts\\python.EXE', '-c', 'from julia import Base']' returned non-zero exit status 3221225477.``` https://github.com/JuliaPy/pyjulia/runs/3988163688?check_suite_focus=true#step:8:297 (Test windows-latest x64 Python 3.7 Julia ~1.7.0-rc1) #457...
Using `julia.install()` works fine but when choosing `julia.install(quiet = True)` I get the following error. ``` julia.install(quiet = True) Traceback (most recent call last): File "", line 1, in File...