in this example https://docs.databricks.com/user-guide/faq/cython.html
The author posted this code
import pyximport
import os
pyximport.install()
import fib
When I included the import my pyx module, it always complains ImportError: No module named pyx_module
I looked at other sample code, like https://www.4info.com/Blog/October-2014/Enhancing-Spark-with-IPython-Notebook-and-Cython Spark with Cython
No one else shows this import statement. Should you be able to import the pyx module like this?