python idle 错误 subprocess didn't make connection

今天打开python idle不反应,然后通过网上搜索让我在安装目录下点击idle.py 弹出如图所示的错误,进行了很多尝试,任然没有得到解决,但是在尝试过程中发现了大家所说问题所在都是因为新建了一个.py脚本跟系统的.py文件冲突导致出现错误。

I had this same problem today. I found another stack overflow post where someone had a tkinter.pyfile
in the same directory as python,
and they fixed it by removing that tkinter.py file.
When I looked in my python directory,
I realized I had created a script called random.py and
put it there. I suspect that it conflicted with the normal random module in python. When I removed this file, python started working again.

So I would suggest you look in your main python directory and see if there are any .py files
that you could move to different places.

Yes, I also had named a program ‘random.py‘ lol. Something in Stackoverflow clued me in so I renamed my program. By that time I‘d already lost "edit with IDLE" so I added the registry entry: HKEY_CLASSES_ROOT\SystemFileAssociations\.py\shell\edit
with IDLE (py3)\command setting the value to: c:\python33\pythonw.exe c:\python33\lib\idlelib\idle.pyw -e %1 Then edit with IDLE was back and I ran the program from IDLE and it WORKED! I can‘t thank you enough for responding to my question and nailing it,
I really appreciate it. Wish would let me vote UP

这是其中一些网友回答,来源自:http://stackoverflow.com/questions/15888186/cant-run-python-via-idle-from-explorer-2013-idles-subprocess-didnt-make-c

还有这篇博客中也是说到类似新建脚本与系统脚本冲突问题然后使得出现上图错误问题:http://www.cnblogs.com/skyhiter/p/3381385.html

我对上面这些说法一一进行尝试都没能解决问题,所以我简单粗暴把python编译器完全卸载,进行重装,删除自己写的所有可能导致与系统.py文件冲突的脚本,问题得到解决,只是以前配置的各种python工具包需要又再一次进行配置。

python idle 错误 subprocess didn't make connection

时间: 2024-12-29 06:47:14

python idle 错误 subprocess didn't make connection的相关文章

python(2.7.10) 安装后启动错误:IDLE's subprocess didn't make connection

问题:启动Python提示错误:IDLE's subprocess didn't make connection.Either IDLE can't start a subprocess or personal firewall software is blocking the connection . 原因: That usually means that your firewall is blocking IDLE, so  enable it in your firewall. If th

Win7上打开Python IDLE时报“Subprocess Startup Error”

最近用要Python处理一点事,就打开Python IDLE,结果出现错误. "IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall software is blocking the connecton." 以前是可以打开的啊,怎么会这样?我就想最近电脑上做了哪些改动. 前段时间想给GVim8.1安装YouCompleteMe,就换成Pyth

Python IDLE启动报错

电脑捣鼓成了64位操作系统,相应的一些工具要重装.今日将以前32位python 卸载,重装成64位的,然后默认安装成功.然后设置系统变量. 进入我的电脑->属性->高级->环境变量->系统变量 ,编辑path  变量: 量名:PATH 变量值:;C:\Python27 保存成功后,打开运行对话框,输入cmd回车,输入命令python,提示正常 启动IDLE(python GUI)时,报错:IDLE's subprocess didn't make connection . eith

python 模块积累-----subprocess

subprocess subprocess模块介绍 subprocess是python创建子进程的工具,其实和c中的fork出一个子进程,然后在子进程中运行exec执行另外一个进程很类似. subprocess包中有很多方法创建子进程,这些函数创建子进程的行为不太一样,我们可以更具需求选择不同的方式来创建子进程. 使用subprocess包中的函数创建子进程的时候,要注意: 1) 在创建子进程之后,父进程是否暂停,并等待子进程运行. 2) 函数返回什么 3) 当returncode不为0时,父进

python子进程模块subprocess详解

属性 1.Popen.poll():用于检查子进程是否已经结束.设置并返回returncode属性. 2.Popen.wait():等待子进程结束.设置并返回returncode属性. 3.Popen.communicate(input=None):与子进程进行交互.向stdin发送数据,或从stdout和stderr中读取数据.可选参数input指定发送到子进程的参数.Communicate()返回一个元组:(stdoutdata, stderrdata).注意:如果希望通过进程的stdin向

Python Idle 无法显示行号(上)

在Idle main shell 中提示错误定位到具体哪一行. 可是在Python Idle 环境中是无法显示行号的,这给我们带来了很大问题 不更换IDLE 对此有如下两种解决方法: 快捷键Atl + G 可以快速定位到指定行 编辑器右下角有显示光标所在行号 更换IDLE 详细安装使用 IDLEX 环境在下篇继续谈 版权声明:本文为博主原创文章,未经博主允许不得转载.

python idle一些简单的小技巧

编辑状态时:Ctrl + [ .Ctrl + ] 缩进代码Alt+3 Alt+4 注释.取消注释代码行Alt+5 Alt+6 切换缩进方式 空格<=>TabAlt+/ 单词完成,只要文中出现过,就可以帮你自动补齐.多按几次可以循环选择Alt+M 打开模块代码,先选中模块,然后按下此快捷键,会帮你打开改模块的py源码供浏览Alt+C 打开类浏览器,方便在源码文件中的各个方法体之间切换Alt+FP 打开路径浏览器,方便选择导入包进行查看浏览F1 打开Python文档,比Editplus 方便吧,不

2、Python IDLE入门

转载:http://www.cnblogs.com/dsky/archive/2012/06/04/2535397.html 1.IDLE是Python软件包自带的一个集成开发环境,初学者可以利用它方便地创建.运行.测试和调试Python程序. 一.IDLE的安装 实际上,IDLE是跟Python一起安装的,不过要确保安装时选中了"Tcl/Tk"组件,准确地说,应该是不要取消该组件,因为默认时该组件是处于选中状态的. 二.IDLE的启动 安装Python后,我们可以从"开始&

(转载)Python IDLE reload(sys)后无法正常执行命令的原因

通常大多数人执行reload(sys)这条语句其实仅仅是为了能够修改Python的默认字符集,也就是能够调用sys.setdefaultencoding().但是如果在IDLE中执行reload(sys),就会导致接下来无法正常执行任何命令. 起初遇到这个问题也是束手无策,后来无意间在stackoverflow上看到有人说到了这个问题.原来是因为IDLE作为一个GUI Shell环境,在启动初始化过程中,会设置特定的标准输入.标准输出和标准错误输出,使得输入和输出都在IDLE的GUI Shell