Anaconda 使用国内镜像:
Anaconda下的 Deep learning Machine 配置(包括OpenBLAS )
Anaconda作为Ubuntu默认环境下,安装到anaconda目录中需要使用conda命令而不是pip
安装OpenBLAS:
sudo apt-get install gfortran cd git git clone https://github.com/xianyi/OpenBLAS cd OpenBLAS make FC=gfortran sudo make PREFIX=/usr/local install
安装Theano:
conda install theano
安装Tensorflow
conda install tensorflow
或者参见官方安装教程最好:
keras
keras无conda安装命令:
https://charmie11.wordpress.com/2016/05/10/keras-deep-learning-library-installation-on-ubuntu-14-04/
如果出现错误:
Torch 7
问题1:
./install.sh: 行 59: cmake: 未找到命令[code]1. ./install.sh: line 59: cmake: command not found
意思就是cmake 命令程序没有安装,执行命令
sudo apt install cmake
问题2:
Error: Build error: Failed compiling object readline.o
Fixed with apt-get install libreadline-dev
问题3:
cmake: /home/shree/anaconda2/lib/libcurl.so.4: no version information available (required by cmake)
mv ~/anaconda2 ~/anaconda2_tmp
http://blog.csdn.net/songyu0120/article/details/43232849
Torch 使用Lua语言,推荐IDE
Lua Development Tools (LDT)