I have compiled pyx codes using cython on my development machine which resulted in pyd files. import mymodulename
works fine on my machine.
However, when I took my pyd files to production machine, `import mymodulename' is throwing error that module not found.
I have looked at cython-pyd-files-not-importing-through-python, however not much help. Also, my development machine has python 3.7 and production machine has 3.8 . What else I should do to make this work?