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

前端 未结 3 1968
灰色年华
灰色年华 2021-02-13 04:34

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

相关标签:
3条回答
  • 2021-02-13 04:57

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

    conda install -c anaconda pyqt

    0 讨论(0)
  • 2021-02-13 05:13

    The problem does not come from PyCharm, if you use any other IDEs, the result would be the same. In fact, they all use a package called pydev to debug. Your best bet would be to create a brand new Python environment (PyCharm has a function for this) and gradually install packages.

    If the solution works and you can find out which package conflicts with pydev, it will be most helpful.

    0 讨论(0)
  • 2021-02-13 05:21

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

    conda install -c conda-forge pyqt
    
    0 讨论(0)
提交回复
热议问题