欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

.py文件转为.pyd文件

程序员文章站 2022-07-14 21:55:36
...

安装easycython库

pip install easycython

test.py

def test():
    print("调用成功")

main.py

import test
test.test()

test.py文件重命名为:test.pyx

.py文件转为.pyd文件

终端运行命令

easycython *.pyx

.py文件转为.pyd文件

重命名pyd文件,删除:cp36-win_amd64.

.py文件转为.pyd文件

运行代码,调用成功:

python main.py

.py文件转为.pyd文件