美文网首页
python代码编译为so

python代码编译为so

作者: leon_tly | 来源:发表于2024-02-17 14:25 被阅读0次

    说明

    1. 需要安装Cython
      pip3 install Cython
    2. 编译后的so包无法跨版本使用

    setup.py文件

    from distutils.core import setup 
    from Cython.Build import cythonize 
    setup(ext_modules=cythonize(['file.py']))
    

    运行

    python3 setup.py build_ext

    相关文章

      网友评论

          本文标题:python代码编译为so

          本文链接:https://www.haomeiwen.com/subject/crbvwdtx.html