如何在Anaconda/Spyder上安装/运行mypyc?文档(https://mypyc.readthedocs.io/en/latest/index.html#)没有解决这个问题。
发布于 2022-05-06 13:14:11
试着从这里安装一个轮子: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 --这是一个更积极地开发到原生CPython模块编译器的Pythran,而且非常容易使用。
https://stackoverflow.com/questions/72141777
复制相似问题