Process finished with exit code -1073741515 (0xC0000135)

后端 未结 7 2130
无人及你
无人及你 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条回答
  •  旧时难觅i
    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.

提交回复
热议问题