转载
解决Python 3.0 IDLE报错的问题 IDLE's subprocess didn't make connection.
2008-10-12 20:05
|
安装Python 3.0 RC1之后,启动IDLE报错。错误信息如下:
IDLE's subprocess didn't make connection.Either IDLE can;t start a subprocess or personal firewall software is blocking the connection 这个是一个已知的bug,python已经将它修复。相关文档在http://bugs.python.org/msg73496说明 修复的过程是这样的: 1、找到python目录下/Python30/Lib/idlelib的run.py文件。在大概75行左右的位置,将 sockthread.set_daemon(True) 修正为: sockthread.daemon = True 2、删除该目录下的run.pyc文件。 |
本文解决Python 3.0 RC1版本中启动IDLE遇到的错误:IDLE's subprocess didn't make connection。通过修改Python安装目录下的run.py文件中的特定行,并删除run.pyc文件来解决问题。

被折叠的 条评论
为什么被折叠?



