每次我尝试运行Python时,它都不会运行,这是为什么?
首先,抱歉我只是一个初学者。每次我尝试运行/打开 python 时,都会出现 IDLE 子进程错误消息,提示“套接字错误:连接被拒绝”。我不知道该怎么办,因此我无法使用 python。有人可以帮我吗?
Firstly, sorry i'm just a beginner. Everytime i try to run/open python an IDLE subprocess error message comes up saying 'socket error: conection refused'. I'm not sure what to do about it, and because of this i can't use python. Could anyone help me please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Windows 上,您必须为 IDLE 创建防火墙规则,因为它使用网络连接来执行某些任务。不幸的是,我找不到有关此主题的任何文档,但我认为可以在 IDLE README 中阅读。
On Windows, you have to create a firewall rule for IDLE, since it uses a network connection for certain tasks. Unfortunately I could not find any documentation on this topic, but I think it can be read in the IDLE README.
您可能安装了某种防火墙来阻止 IDLE 打开本地网络连接。您使用哪种防火墙?
PS - 在紧要关头,您可以从安装位置运行 python.exe 并使用标准文本编辑器(例如 Notepad++)来创建新的脚本和模块。你知道如何在Windows中设置PATH环境变量吗?你在哪里安装了Python?
You've probably got some kind of firewall in place that prevents IDLE from opening a local network connection. What kind of firewall are you using?
PS - in a pinch, you can just run python.exe from where it is installed and use a standard text editor (such as Notepad++) to create new scripts and modules. Do you know how to set the PATH environment variable in Windows? Where did you install Python?