PyCharm Process finished with exit code -1073741819 (0xC0000005)
目录
错误如下
Process finished with exit code -1073741819 (0xC0000005)
1. h5py这个坑
之前使用TensorFlow好好的,为了装cv2不小心装了一个h5py包,之后死活报上面的错误,解决方案是卸载该包:
C:\Users\XXX>pip uninstall h5py
Uninstalling h5py-2.7.0:
Would remove:
e:\anaconda3\lib\site-packages\h5py
e:\anaconda3\lib\site-packages\h5py-2.7.0-py3.6.egg-info
Proceed (y/n)? y
Successfully uninstalled h5py-2.7.0
2. 其他方法
参考博客《pycharm报错:Process finished with exit code -1073741819 (0xC0000005)》,总结的比较全。
转载自:https://blog.csdn.net/u014203453/article/details/82773750