Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

problems with julia 1.9? #113

Closed
zingale opened this issue Jun 3, 2023 · 2 comments
Closed

problems with julia 1.9? #113

zingale opened this issue Jun 3, 2023 · 2 comments

Comments

@zingale
Copy link

zingale commented Jun 3, 2023

I am trying the simple example:

from diffeqpy import de


def f(u,p,t):
    return -u

u0 = 0.5
tspan = (0., 1.)
prob = de.ODEProblem(f, u0, tspan)
sol = de.solve(prob)

print(sol)

on a machine with Fedora 38. This has python 3.11 and Julia 1.9. When I run this example, I get:

ERROR: Unable to dlopen(cxxpath) in parent!
Message: /lib64/libstdc++.so.6: cannot open shared object file: No such file or directory

If I try the same test on a machine with Fedora 37, which has python 3.11 but Julia 1.8, it runs fine.

Is there an incompatibility with Julia 1.9? or is there an addition setup needed?

This is with a fresh install of DifferentialEquations.jl.

@ChrisRackauckas
Copy link
Member

I think this is generally a pyjulia issue, not a diffeqpy issue. This issue likely needs to be upstreamed to https://github.com/JuliaPy/pyjulia

@ChrisRackauckas
Copy link
Member

Fixed!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants