databricks-sql-python icon indicating copy to clipboard operation
databricks-sql-python copied to clipboard

PyCharm IDE + pandas exit code 139

Open Brigidi opened this issue 1 year ago • 0 comments

Hello,

I'm developing in PyCharm with the databricks-sql-connector package. The error message Process finished with exit code 139 (interrupted by signal 11: SIGSEGV) is triggered whenever importing pandas. Here is an example of something that triggers the issue:

import pandas as pd

print('hello')

The issue does not happen when using databricks-sql-connector v3.1.0.

If you are also facing this issue you can correct it by using:

pip uninstall databricks-sql-connector pyarrow pandas numpy

and then reinstalling using:

pip install databricks-sql-connector==3.1.0

Brigidi avatar Jun 21 '24 15:06 Brigidi