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

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -