Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Process finished with exit code -1073740791 (0xC0000409) PyCharm

I have created a pure Python project in PyCharm and imported numpy, tensorflow and opencv in order to test a small program.

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.

I am new to Python, Tensorflow and Pycharm.

Here is the logged error:

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:\Users\xtr\Test\TfLayers\Scripts\python.exe  
Faulting module path: C:\WINDOWS\System32\ucrtbase.dll  
Report ID: e96d98cb-28c9-4340-bcd3-a7033d4b4972  
Faulting package full name:   
Faulting package-relative application ID:
like image 748
bondocel11 Avatar asked Mar 22 '18 15:03

bondocel11


2 Answers

This was solved by installing pyqt. I installed pyqt with the command (from conda-forge)

conda install -c conda-forge pyqt
like image 50
Nilav Baran Ghosh Avatar answered Nov 17 '22 06:11

Nilav Baran Ghosh


In my case it was obsolete pyqt library. This following worked for me.

conda install -c anaconda pyqt

like image 1
math_law Avatar answered Nov 17 '22 04:11

math_law