(原)Ubuntu16 中安装torch版的cudnn

转载请注明出处:

http://www.cnblogs.com/darkknightzh/p/5668471.html

参考网址:

https://devtalk.nvidia.com/default/topic/912765/cudnn-install-error/

https://github.com/soumith/cudnn.torch

这个标题也许不太合适,反正需要先安装nvidia的cudnn,然后在安装torch的cudnn(称作解释器还是什么吧)

1. 去nvidia官网下载cudnn(注册后便可下载):

https://developer.nvidia.com/cudnn

我这里下载的是cudnn-7.5-linux-x64-v5.0-ga.tgz。

2. 按照参考网址https://devtalk.nvidia.com/default/topic/912765/cudnn-install-error/中JulieBernauer给出的方法,直接使用如下命令:

sudo tar xvfz cudnn-7.5-linux-x64-v5.0-ga.tgz -C /usr/local

将文件解压到/usr/local/目录下。

3. 设置环境变量(注意,cudnnv5.0版本lib文件夹为lib64):

export CPATH=/usr/local/cuda/include:$CPATH
export LIBRARY_PATH=/usr/local/cuda/lib64:$LIBRARY_PATH
export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH

说明:上述命令不知道到底哪个地方的环境变量改了。。。我是ubuntu菜鸟。因而,直接在终端默认目录下打开.bashrc文件:

gedit .bashrc

然后,简单粗暴的把上面三句话粘贴到该文件末尾。。。如下:

4. 下载torch版本的cudnn,网址:https://github.com/soumith/cudnn.torch

并使用luarocks install进行安装

5. 最最重要的一步:重启电脑。。。今天下午在另一台电脑上装完torch后,没重启,直接使用zerobrane,require包后,一直提示没有。。。所以,一定要重启。

6. 理论上就没有问题了,如下图:

时间: 2024-10-13 06:42:38

(原)Ubuntu16 中安装torch版的cudnn的相关文章

# Ubuntu16.04安装nvidia驱动+CUDA+cuDNN

Ubuntu16.04安装nvidia驱动+CUDA+cuDNN 准备工作 1.查看GPU是否支持CUDA lspci | grep -i nvidia 2.查看Linux版本 uname -m && cat /etc/*release nvidia驱动 1. 先卸载原有N卡驱动 #for case1: original driver installed by apt-get: sudo apt-get remove --purge nvidia* #for case2: original

(原)ubuntu16中安装moses

转载请注明出处: http://www.cnblogs.com/darkknightzh/p/5653186.html 在ubuntu14中,可以使用下面的语句安装moses: luarocks install moses 但是在ubuntu16中,一直提示权限不够: 如果使用sudo的话,好像会提示没安装很多的其他东西...(记不清了) 因而在ubuntu16中使用下面的方法: 1. 下载Moses工程(使用git或者直接下载并解压均可): git clone git://github.com

ubuntu14.04中安装国际版QQ

由于我的windows系统崩溃,突然发现ubuntu系统非常稳定,不容易崩溃和卡机,然后我就准备开始与ubuntu共度这最后的两年大学生活,正好可以灭杀我玩lol的想法.  所以就希望可以找到基本的社交软件,于是我就想到了ubuntu中的QQ安装! 下面的链接是我在优客助手中的QQ安装教程中找到的,希望对于想在ununtu中安装QQ的同志们有所帮助! http://www.ubuntukylin.com/ukylin/forum.php?mod=viewthread&tid=7688&ex

(原)Ubuntu16中安装cuda toolkit

转载请注明出处: http://www.cnblogs.com/darkknightzh/p/5655957.html 参考网址: https://devtalk.nvidia.com/default/topic/862537/cuda-setup-and-installation/installing-cuda-toolkit-on-ubuntu-14-04/ http://unix.stackexchange.com/questions/38560/gpu-usage-monitoring-

(原+转)ubuntu16中安装opencv2.4.11

转载请注明出处: http://www.cnblogs.com/darkknightzh/p/5638117.html 参考网址: http://www.cnblogs.com/jeakon/archive/2013/05/08/3066469.html http://my.oschina.net/u/1757926/blog/293976 1 预先安装一些软件: sudo apt-get install build-essential cmake libgtk2.0-dev pkg-confi

(原)ubuntu中安装kate

转载请注明出处: http://www.cnblogs.com/darkknightzh/p/6339642.html 参考网址: https://kate-editor.org/build-it/#linux 1. 安装依赖项: sudo apt install qtbase5-dev qtscript5-dev extra-cmake-modules plasma-framework-dev libkf5crash-dev libkf5config-dev libkf5activities-

在linux中安装rpm版的mysql5.6的注意事项

建议先看看官方给出的安装文档 http://dev.mysql.com/doc/refman/5.7/en/linux-installation-rpm.html 安装完毕后会生成一个随机的root密码,密码保存在用户主目录下的.mysql_secret文件中 刚安装后使用/etc/init.d/下的名为mysql的脚本来启动mysql服务器 sh /etc/init.d/mysql start 启动后使用客户端连接,没修改root密码前只能使用 SET PASSWORD 命令 SET PASS

(原)Ubuntu14中安装GraphicsMagick

转载请注明出处: http://www.cnblogs.com/darkknightzh/p/5661439.html 参考网址: http://comments.gmane.org/gmane.comp.video.graphicsmagick.core/514 http://www.graphicsmagick.org/INSTALL-unix.html https://github.com/clementfarabet/graphicsmagick http://www.cnblogs.c

在 VirtualBox 中安装最小化版 CentOS

在 VirtualBox 中安装最小化版 CentOS 发表于 2013-08-27 作者 Haoxian Zeng 浏览 3,062 次 7 在刚开始接触 VPS 服务器的时候,为了测试各种程序和配置是否能用,就在本地使用 VirtualBox创建了一个与 VPS 配置差不多一样的虚拟机,也装上了 Linux 的 CentOS 发行版,内存大小.系统和软件都照着 VPS 的模式来.这是个练手的好方法. 因为只是将它当作一个 VPS 来用的,安装之前考虑这么几件事情: 操作系统.Linode V