pyinstaller编译打包为pyd

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(["mylib.py", ]),
)

执行以下cmd命令

python build_pyd.py build_ext --inplace

等pyd文件即编译好,执行pyinstaller打包py文件

pyinstaller .\****.py

 

上一篇:Python文件.py||.pyi||.pyc||.pyo||.pyd等各种文件后缀区别(全面汇总)


下一篇:windows anaconda python3.7 import ssl,psycopg2报错