问题描述
我正在运行一个 python 脚本,它曾经可以工作(它现在甚至可以在我的另一台笔记本电脑上运行),但不能在我当前的计算机上运行 - 我只是收到错误代码:
I'm running a python script and it used to work (it even does on my other laptop right now) but not on my current computer - I just get the error code:
Process finished with exit code -1073741515 (0xC0000135)
我没有得到任何其他结果 - 甚至从打印"中也没有文件开头的命令.
I don't get any other results - not even from "print" commands at the beginning of the file.
我没有发现任何特定于此的东西.我重新安装了 python (2.7.9)、pygame (1.9.1) 甚至 pycharm(先尝试了 4.5,现在是 5.0 - 结果相同)
I haven't found anything specific to that.I re-installed python (2.7.9), pygame (1.9.1) and even pycharm (tried 4.5 first, now with 5.0 - same result)
有谁知道那个错误代码是什么意思?我找不到任何关于它的信息.
Does anyone know what that error code means? I couldn't find anything about it.
推荐答案
重新安装 python – 你在 c:\WINDOWS\system32\ 中没有 python33.dll
reinstall python – you don't have python33.dll in c:\WINDOWS\system32\
也许你有不同的python版本——查看c根目录下的文件夹:
Maybe you have different python versions – look at folders in root of c:
如果是,则在 pyCharm > Settings > Project Interpreter 中指向您的 python.exe 版本
If yes, then point to your version of python.exe in pyCharm > Settings > Project Interpreter
这篇关于进程完成,退出代码 -1073741515 (0xC0000135)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!