databricks-sql-python
databricks-sql-python copied to clipboard
PyCharm IDE + pandas exit code 139
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