Process finished with exit code -1073741515 (0xC0000135)

后端 未结 7 2106
无人及你
无人及你 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:48

    I got this error in PyCharm after upgrading pyarrow to the most recent version -- 0.16 --- using pip, running the same code I had ran before this update which used pandas read_parquet specifying the engine="pyarrow" triggering use of this library. After uninstalling and installing the previous version with

    pip install pyarrow=="0.15"

    the problem resolved.

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