如何消除 python 中的这个错误?没有模块圣人所有
How to remove this error in python ? no module sage all
我安装了 sagemath 。我在我的 python 文件中添加了这一行。但是当我 运行 python myfile.py 时出现此错误:
from sage.all import *
error: no module named sage.all
根据您安装 SageMath 的方式,它可能是
使用系统 Python 或自己发货。
能够运行
from sage.all import *
您需要使用 Sage 的 Python。
如果 sage
在您的 PATH
中,这可以通过 运行ning
实现
$ sage --python myfile.py
而不是
$ python myfile.py
我安装了 sagemath 。我在我的 python 文件中添加了这一行。但是当我 运行 python myfile.py 时出现此错误:
from sage.all import *
error: no module named sage.all
根据您安装 SageMath 的方式,它可能是 使用系统 Python 或自己发货。
能够运行
from sage.all import *
您需要使用 Sage 的 Python。
如果 sage
在您的 PATH
中,这可以通过 运行ning
$ sage --python myfile.py
而不是
$ python myfile.py