sagemath安装在ubuntu 16上失败

时间:2016-07-03 23:15:02

标签: sage ubuntu-16.04

我需要帮助在我的ubuntu 16笔记本电脑上安装sagemath。

我这样做了:

cat /etc/os-release 
cd ~
wget http://mirrors.mit.edu/sage/linux/64bit/sage-7.2-Ubuntu_16.04-x86_64.tar.bz2
tar jxf sage-7.2-Ubuntu_16.04-x86_64.tar.bz2
SageMath/sage

我看到了这个:

dan@al78:~ $ tar jxf sage-7.2-Ubuntu_16.04-x86_64.tar.bz2
dan@al78:~ $ 
dan@al78:~ $ ll SageMath/sage
-rwxr-xr-x 1 dan dan 4680 May 15 16:43 SageMath/sage*
dan@al78:~ $ 
dan@al78:~ $ SageMath/sage
RecursionError: maximum recursion depth exceeded during compilation
┌────────────────────────────────────────────────────────────────────┐
│ SageMath version 7.2, Release Date: 2016-05-15                     │
│ Type "notebook()" for the browser-based notebook interface.        │
│ Type "help()" for help.                                            │
└────────────────────────────────────────────────────────────────────┘

ERROR:  The Sage installation tree has moved

我欢迎有关如何调试此内容的线索。

1 个答案:

答案 0 :(得分:6)

使用一些shell命令很容易解决问题:

cd ~
mv anaconda3 anaconda3bak
SageMath/sage
quit
mv anaconda3bak anaconda3
相关问题