Segmentation fault: 11 when importing math into Python -
this question has answer here:
it crashes everytime try import math. there way reinstall math library? i'm on python 3.3.2.
sidwyn$ python3 >>> math import pi segmentation fault: 11
please try this:
$ env -i python3.3 >>> import faulthandler >>> faulthandler.enable() >>> import math >>> math <module 'math' (built-in)> >>> math import pi # should segfault and try run python inside gnu debugger. have type "run" gdb shell start python , "backtrace" c call stack.
$ gdb python3.3 (gdb) run >>> math import pi # should segfault (gdb) backtrace and post output here.
Comments
Post a Comment