我按照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
我错过了什么?
答案 0 :(得分:0)
要解决此问题,您需要运行:
sudo apt-get install -y libreadline-dev
然后删除build文件夹(否则会出现另一个错误:collect2: error: ld returned 1 exit status
)并再次运行安装命令。