Process finished with exit code -1073740791 (0xC0000409) PyCharm(进程以退出代码 -1073740791 (0xC0000409) PyCharm 完成)
问题描述
我在 PyCharm 中创建了一个纯 Python
项目并导入了 numpy
、tensorflow
和 opencv
以便测试一个小程序.
I have created a pure Python
project in PyCharm and imported numpy
, tensorflow
and opencv
in order to test a small program.
所有包都更新到最新版本.我的 Python
版本是 3.6.4
,我在 Windows x64
上运行.我浏览了有关建议更新 NVIDIA
驱动程序的所有解决方案,但我有一个 Intel
驱动程序.
All packages are updated to the latest version.My Python
version is 3.6.4
and I am running on Windows x64
. I have browsed through all the solutions on related threads that suggested updating NVIDIA
driver, but I have an Intel
driver.
我是 Python
、Tensorflow
和 Pycharm
的新手.
I am new to Python
, Tensorflow
and Pycharm
.
这是记录的错误:
Faulting application name: python.exe, version: 3.6.4150.1013, time stamp: 0x5a38b889
Faulting module name: ucrtbase.dll, version: 10.0.16299.248, time stamp: 0xe71e5dfe
Exception code: 0xc0000409
Fault offset: 0x000000000006b79e
Faulting process ID: 0x4004
Faulting application start time: 0x01d3c1ef8a3d751c
Faulting application path: C:UsersxtrTestTfLayersScriptspython.exe
Faulting module path: C:WINDOWSSystem32ucrtbase.dll
Report ID: e96d98cb-28c9-4340-bcd3-a7033d4b4972
Faulting package full name:
Faulting package-relative application ID:
推荐答案
通过安装pyqt解决了这个问题.我使用命令(来自 conda-forge)安装了 pyqt
This was solved by installing pyqt. I installed pyqt with the command (from conda-forge)
conda install -c conda-forge pyqt
这篇关于进程以退出代码 -1073740791 (0xC0000409) PyCharm 完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!