参考博客:https://blog.csdn.net/m0_37811342/article/details/110069541
待生成pyd的文件task.py:
def hello(): print("Hello world")
1.安装环境
pip install cython
pip install easycython
安装visualcppbuildtools_full.exe 用于编译,如果安装visual studo c++环境,可以不安装
2.生成.pyd文件
在待转换文件同目录下打开cmd执行:easycython test.py
会生成
将.pyd文件改成正常名字即可调用