说明
- 需要安装Cython
pip3 install Cython - 编译后的so包无法跨版本使用
setup.py文件
from distutils.core import setup
from Cython.Build import cythonize
setup(ext_modules=cythonize(['file.py']))
运行
python3 setup.py build_ext
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
网友评论