2016-07-03 19 views
0

私のubuntu 16 laptopにsagemathをインストールするのに助けが必要です。sagemathのインストールがubuntuで失敗する16

私はこれをしなかった:私はこれをデバッグする方法についての手がかりを歓迎するだろう

[email protected]:~ $ tar jxf sage-7.2-Ubuntu_16.04-x86_64.tar.bz2 
[email protected]:~ $ 
[email protected]:~ $ ll SageMath/sage 
-rwxr-xr-x 1 dan dan 4680 May 15 16:43 SageMath/sage* 
[email protected]:~ $ 
[email protected]:~ $ 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 

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 

私はこれを見ました。

+0

あなたは私たちにあなたが 'RecursionError'に入った正確な問題を与えることができますか?これは次の3つのリンクのようなにおいがします。これらのリンクはおそらくPythonのインストールがどこかで矛盾しているためです。 https://groups.google.com/forum/#!topic/sage-support/R4JVzh03wEU、https://github.com/caskroom/homebrew-cask/issues/18279、特にhttps://groups.google.com/forum /#!topic/sage-support/R4JVzh03wEU – kcrisman

+1

これは非常に良い手がかりでした。問題はanaconda3でした。 – user3676943

答えて

2

問題は、いくつかのシェルコマンドで修正するのは簡単だった:

cd ~ 
mv anaconda3 anaconda3bak 
SageMath/sage 
quit 
mv anaconda3bak anaconda3 
関連する問題