Ubuntu 下安装octave 4.0.3

上了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

之后在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


安装完成后即可成功提交作业。

你可能感兴趣的:(ML)