Process finished with exit code -1073741515 (0xC0000135)(进程以退出代码 -1073741515 (0xC0000135) 结束)
问题描述
我正在运行一个 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:WINDOWSsystem32没有python33.dll
reinstall python – you don't have python33.dll in c:WINDOWSsystem32
也许你有不同的 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) 结束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:进程以退出代码 -1073741515 (0xC0000135) 结束
基础教程推荐
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
