SageMath:在dochtml phas中运行“make”以ImportError结束

2024-06-12 15:09:22 发布

您现在位置:Python中文网/ 问答频道 /正文

我正试图在我的macbook上安装sagemath软件包。我进去了 ./configure后跟make。这是最后几个 输出行。无法调试原因。你知道吗

[sagelib-8.7] Finished cleaning, time: 0.40 seconds.
[sagelib-8.7] if [ "$UNAME" = "CYGWIN" ]; then                         \
[sagelib-8.7]       sage-rebase.sh "$SAGE_LOCAL" 2>/dev/null;            \
[sagelib-8.7]   fi
[sagelib-8.7] 
[sagelib-8.7] real  19m37.851s
[sagelib-8.7] user  59m16.416s
[sagelib-8.7] sys   2m58.759s
cp /Users/satya/Downloads/SageMath/src/bin/sage-env-config /Users/satya/Downloads/SageMath/local/bin/sage-env-config
cd ../.. && sage-logger -p './sage --docbuild --no-pdf-links all html ' logs/dochtml.log
[dochtml] Traceback (most recent call last):
[dochtml]   File "/Users/satya/Downloads/SageMath/local/lib/python2.7/runpy.py", line 163, in _run_module_as_main
[dochtml]     mod_name, _Error)
[dochtml]   File "/Users/satya/Downloads/SageMath/local/lib/python2.7/runpy.py", line 111, in _get_module_details
[dochtml]     __import__(mod_name)  # Do not catch exceptions initializing package
[dochtml]   File "/Users/satya/Downloads/SageMath/local/lib/python2.7/site-packages/sage_setup/docbuild/__init__.py", line 60, in <module>
[dochtml]     import sage.all
[dochtml]   File "/Users/satya/Downloads/SageMath/local/lib/python2.7/site-packages/sage/all.py", line 98, in <module>
[dochtml]     from sage.symbolic.all   import *
[dochtml]   File "/Users/satya/Downloads/SageMath/local/lib/python2.7/site-packages/sage/symbolic/all.py", line 3, in <module>
[dochtml]     from sage.libs.pynac.pynac import I
[dochtml]   File "sage/symbolic/expression.pxd", line 4, in init sage.libs.pynac.pynac (build/cythonized/sage/libs/pynac/pynac.cpp:30147)
[dochtml]   File "sage/symbolic/expression.pyx", line 161, in init sage.symbolic.expression (build/cythonized/sage/symbolic/expression.cpp:74075)
[dochtml] ImportError: dlopen(/Users/satya/Downloads/SageMath/local/lib/python2.7/site-packages/sage/symbolic/ring.so, 2): Symbol not found: __ZNSt3__16vectorIN5GiNaC2exENS_9allocatorIS2_EEE11__vallocateEm
[dochtml]   Referenced from: /Users/satya/Downloads/SageMath/local/lib/python2.7/site-packages/sage/symbolic/ring.so
[dochtml]   Expected in: flat namespace
[dochtml]  in /Users/satya/Downloads/SageMath/local/lib/python2.7/site-packages/sage/symbolic/ring.so
make[3]: *** [doc-html] Error 1
make[2]: *** [all-start] Error 2

real    19m41.468s
user    59m18.862s
sys 3m0.256s
***************************************************************
Error building Sage.

The following package(s) may have failed to build (not necessarily
during this run of 'make all-start'):

The build directory may contain configuration files and other potentially
helpful information. WARNING: if you now run 'make' again, the build
directory will, by default, be deleted. Set the environment variable
SAGE_KEEP_BUILT_SPKGS to 'yes' to prevent this.

make[1]: *** [all-start] Error 1
make: *** [all] Error 2

任何帮助都将不胜感激。你知道吗


Tags: inmakeliblocaldownloadslineallusers
2条回答

为SageMath运行make分两步进行:make build 接着是make doc。你知道吗

在您的例子中,make build阶段似乎已经完成, 只有在make doc阶段才有问题。 这意味着你可能已经有了一个函数数学, 有一个缺点就是文档无法构建。 所以你可能会决定按原样使用它。你知道吗

在@John Palmieri之后,我建议发布到sage-devel 或sage支持来获得调试make失败的帮助。会的 用于指定发生错误的操作系统 (什么版本的macOS),如果buid是从目录启动的 通过git clone或源tarball获得,具体是什么 操作序列已运行。你知道吗

另外,在下一次尝试时,您可能希望移动SageMath 在运行make之前从下载文件夹中取出文件夹,因为 Sage安装启动一次后就不能移动 (如果移动了Sage,则必须再次运行make才能使用)。你知道吗

根据Samuel的回答,您可能想尝试的另一件事是只运行make doc-clean,然后再运行make doc。我发现(在Mac电脑上)有时会有一个奇怪的打嗝,我永远也找不到,这通常会过去。你知道吗

相关问题 更多 >