Process finished with exit code -1073741515 (0xC0000135)

后端 未结 7 2105
无人及你
无人及你 2020-12-08 19:45

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:

Proce         


        
相关标签:
7条回答
  • 2020-12-08 20:24

    reinstall python – you don't have python33.dll in c:\WINDOWS\system32\

    Maybe you have different python versions – look at folders in root of c:

    If yes, then point to your version of python.exe in pyCharm > Settings > Project Interpreter

    0 讨论(0)
  • 2020-12-08 20:28

    Here is caused it and solution:

    The computer had two physical processors. The code uses Numba for parallel computations. Upon disabling and re-enabling hyperthreading this issue started. To solve it clear pycache folder and run the program.

    0 讨论(0)
  • 2020-12-08 20:37

    I solved it by disabling "PyQt compatible" checkbox in the Settings under Build, Execution, Deployment --> Python Debugger.

    After that, it should debug properly.

    0 讨论(0)
  • 2020-12-08 20:38

    I encountered the same error when running .py in PyCharm on Windows. Inspired by https://thenewboston.com/forum/topic.php?id=10088, I uninstalled and reinstalled Python. When reinstalling, I checked the ADD PYTHON TO THE PATH Option. After recreating the virtual environment in PyCharm, the error was gone.

    Update: On another Windows PC (64-bit), I encountered the same error where reinstalling Python was not enough. I tried two things.

    1. Uninstalling 32-bit Python and installing 64-bit Python. Namely downloading python-3.6.4-amd64.exe instead of python-3.6.4.exe
    2. Recreating the Pycharm project from github.

    Between the two actions, the error was gone.

    0 讨论(0)
  • 2020-12-08 20:43

    If you're trying create a .svm use dlib probably the problem is in .xml, some image that you use is cause the problem. Try to create a new .xml putting out a image(any image) or remove that your .xml and test, try this even you find out the image problem.

    For exemple, the image "treinamento3.jpg" was the problem. I removed this command line:

    < image file='delirium\treinamento3.jpg'>
        < box top='213' left='86' width='46' height='49'/ >
        < box top='531' left='47' width='125' height='123'/ >
      < /image >
    

    from my .xml for solve my problem.

    0 讨论(0)
  • 2020-12-08 20:47

    This may be due to another program locking that memory location. Before you try more drastic measures, know that restarting the computer fixed the problem for me.

    0 讨论(0)
提交回复
热议问题