美文网首页
Cython使用案例之:输出Hello World

Cython使用案例之:输出Hello World

作者: 求索_700e | 来源:发表于2020-06-17 23:24 被阅读0次

    https://blog.csdn.net/The_Time_Runner/article/details/103199159

    from distutils.core import setup

    from Cython.Build import cythonize

    import glob

    path = "/dev/*.py"

    files  = glob.glob(path)

    for f in files:

        setup(

                ext_modules = cythonize(f)

                  )

    #"commands": python3 setup.py build_ext --inplace

    相关文章

      网友评论

          本文标题:Cython使用案例之:输出Hello World

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