I never used linux till now, I am trying to generate compile files of .py file in Linux. I was able to generate .pyd file in windows. I have used reference from below site
https://pypi.org/project/easycython/ https://cython.readthedocs.io/en/latest/src/userguide/source_files_and_compilation.html
Able to generate .pyd file in windows using below two command
easycython *.py
cythonize -a -i *.py
But in linux I am getting error as below
bash: easycython: command not found
bash: cythonize: command not found
Can anyone please help me with this. Any approach which can compile .py file in linux. Please give me some advice.