pip install Cython
我们在需要打包的.py所在的文件夹新建py文件,在此处命名为build_pyd.py,其内容如下:
from distutils.core import setup from Cython.Build import cythonize setup( name='any words.....', ext_modules=cythonize(["需要引入的外部包.py", ]), )
执行以下cmd命令
python build_pyd.py build_ext --inplace
等pyd文件即编译好,执行pyinstaller打包py文件
pyinstaller .****.py