红联Linux门户
Linux帮助

Ubuntu下安装octave 4.0.3

发布时间:2016-07-27 15:32:29来源:northeastsqure作者:回味-
上了Andrew Ng 的 ML,用在ubuntu 15.10下使用octave 4.0.0,提交作业(submit)时会出现:Submission failed: unexpected error: urlread: HTTP response code said error  
 
Discussion 里面的解决办法是修改submitWithConfiguration.m的第66行,但是修改后出现了新的bug,果断放弃使用4.0.0,但ubuntu软件中心只有4.0.0,所以选择手动编译octave 4.0.3。
 
下载地址:octave 4.0.3(ftp://ftp.gnu.org/gnu/octave/octave-4.0.3.tar.xz)
注:octave 4.0.3是目前最新的版本,发布日期是2016/7/2。
Ubuntu下安装octave 4.0.3
 
之后在Shell中按顺序输入如下命令:
sudo apt-get build-dep octave  
tar xzf octave-4.0.3.tar.gz  
cd octave-4.0.3  
./configure  
make  
sudo make install  
 
安装完成后即可成功提交作业。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22759.html