在Kubuntu 14.04 LTS x64上安装Torch7:"错误:构建错误:编译对象readline失败。"

时间:2015-11-19 03:46:53

标签: torch

我按照http://torch.ch/docs/getting-started.html的说明在Kubuntu 14.04 LTS x64上安装了Torch7上的Torch。

# in a terminal, run the commands
sudo apt-get install -y cmake # is needed to compile when running ./install.sh
curl -s https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bash
git clone https://github.com/torch/distro.git ~/torch --recursive
cd ~/torch; ./install.sh

执行./install.sh时失败并显示以下错误消息:

Error: Build error: Failed compiling object readline.o

我错过了什么?

1 个答案:

答案 0 :(得分:0)

要解决此问题,您需要运行:

sudo apt-get install -y libreadline-dev

然后删除build文件夹(否则会出现另一个错误:collect2: error: ld returned 1 exit status)并再次运行安装命令。

相关问题