Segfault when from scipy import interpolate is used

Asked by Jouny

Hello,
I would like to ask how to solve the following problem.
When I run a script in Yade 1.10 (specifically yadedaily) with "from scipy import interpolate" I get "Segmentation fault (core dumped)". But when I run the mentioned part of that script directly in python all is OK.
Is it names conflict? Or something else?

Thanks, Jouny

Question information

Language:
English Edit question
Status:
Solved
For:
Yade Edit question
Assignee:
No assignee Edit question
Solved by:
Chareyre
Solved:
Last query:
Last reply:
Revision history for this message
Best Chareyre (bruno-chareyre-9) said :
#1

It is a known issue (google(yade scipy)) that you can workaround with
"-l" option at startup. Basically, it will change the order of the imports.
See #5 in [1].

Bruno

[1] https://bugs.launchpad.net/yade/+bug/1183402

Revision history for this message
Jouny (martinjonak) said :
#2

Oh, of course.
Thanks for your reply,

Jouny