我需要帮助安装sagemath在我的ubuntu 16笔记本电脑。
我做了这个:
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我欢迎关于如何调试这个的线索。
发布于 2016-07-06 17:44:08
这个问题很容易用一些shell命令来解决:
cd ~
mv anaconda3 anaconda3bak
SageMath/sage
quit
mv anaconda3bak anaconda3https://stackoverflow.com/questions/38175159
复制相似问题