Python:openssl 分段错误
我按照此网站上的说明 http:// Paltman.com/2007/nov/15/getting-ssl-support-in-python-251/ 安装 openssl。
当我去测试时,我得到以下输出:
test_rude_shutdown ...
test_basic ...
Segmentation fault
我将如何解决这个问题?
I followed the instrunction on this site http://paltman.com/2007/nov/15/getting-ssl-support-in-python-251/ to install openssl.
When I go to test i get this as the output:
test_rude_shutdown ...
test_basic ...
Segmentation fault
How would I resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,确保
which python
返回/usr/local/bin/python
。如果没有,请使用您刚刚构建的 Python 而不是您的系统副本!如果是这样,请尝试创建故障转储。运行测试之前:
ulimit -c unlimited
然后再次运行崩溃测试。获取当前目录中出现的文件。这是一个崩溃转储区。打开错误报告,附加转储,并向 Python 人员寻求帮助。
First, make sure
which python
returns/usr/local/bin/python
. If not, use the Python you just built instead of your system copy! If it does, try creating a crash dump.Before running the tests:
ulimit -c unlimited
Then run the crashy test again. Take the file which materializes in your current directory. It's a crash dump. Open a bug report, attach the dump, and ask the Python folks for help.