ubuntu16.04 无sudo权限安装torch7详细流程

无sudo权限安装torch7是真的挺麻烦的,网上相关的很详尽的文章也比较少,现作以记录。

torch的安装过程,在ubuntu中依次输入命令:

  1. git clone https://github.com/torch/distro.git ~/torch --recursive #下载torch安装包,并放在torch文件夹下
  2. cd ~/torch #打开torch文件夹
  3. ./install.sh #安装torch
  4. source ~/.bashrc #更新配置环境
  5. thubuntu16.04 无sudo权限安装torch7详细流程_第1张图片
    出现这样的反馈就表明torch7已经安装好啦!


下面具体说一下我遇到的问题

错误1:cmake : command not found
解决方法:无sudo权限安装cmake
下载cmake源码包
tar -zvxf cmake-3.11.1.tar.gz
cd cmake-3.11.1
./bootstrap
./configure --prefix=/home/xxx/xxx —自己用户名下的目录
make
make install

错误2:readline.h
解决方法:网上说需要安装libreadline-dev。
没有sudo权限的安装方式为:
apt-get source libreadline-dev
cd readline6-6.3/
./configure --prefix=/home/zyliu/usr/
make
make install
但在apt-get source libreadline-dev时又出现了问题:“E: You must put some ‘source’ URIs in your sources.list” 而没有sudo权限是不能更改sources.list的
于是找管理员帮我安装了libreadline-dev…

错误3:Error generating file torch/extra/cutorch/build/lib/THC/CMakeFiles/THC.dir//./THC_generated_THCTensorMath.cu.o
解决方法:直接在命令行输入
export TORCH_NVCC_FLAGS="-D__CUDA_NO_HALF_OPERATORS__",再重新./install.sh即可

参考文章:
ubuntu无sudo权限以及非root的用户apt安装软件–https://blog.csdn.net/qq_24406903/article/details/88376829

非root用户安装CMake
https://blog.csdn.net/supinyu/article/details/80286186

Ubuntu安装torch出现的问题
https://blog.csdn.net/u010949998/article/details/81747722

你可能感兴趣的:(ubuntu)