python3.X之py文件转为pyd文件(处理Unable to find vcvarsall.bat)
python3.X之py文件转为pyd文件1.安装Cythonpipinstallcython2.编写测试文件(需要转为pyd的文件)注意:如果是python3.x,需要在开头加上#cython:language_level=3,不然会有报错提示!#cython:language_level=3print("hellopython")3.编写setup文件(用于在终端执行将测试文件转为pyd文件)