如何在 Spyder 中 运行 mypyc?

How to run mypyc in Spyder?

install/run 如何在 Anaconda/Spyder 上使用 mypyc? 文档 (https://mypyc.readthedocs.io/en/latest/index.html#) 没有解决这个问题。

尝试从此处安装轮子:https://github.com/mypyc/mypy_mypyc-wheels/releases

选择适合您的 PC 类型(Windows、Mac、Linux),然后打开 Anaconda 命令提示符,转到下载文件的位置并键入:pip install filename.whl

有关如何使用它的说明,请阅读此处:https://mypyc.readthedocs.io/en/latest/getting_started.html

注意编译是从命令提示符完成的,而不是在 Python 中。您可能应该查看 Pythran,它是一个更积极开发的 Python 到原生 CPython 模块编译器,而且它非常易于使用。