前方预警:windows的坑太多了,抛弃用linux吧
安装theano,提前清空自己的python环境吧,坑太多了,anaconda会自动安装path
一,首先安装python包管理anaconda
下载地址:https://repo.continuum.io/archive/
下载对应不同的python版本地址:https://docs.anaconda.com/anaconda/faq#how-do-i-get-the-latest-anaconda-with-python-3-5
选择自己需要的版本(python2,Python3),注意不同版本,内置的python版本,pip版本都不一样
(我的成功环境是,python3.4.5,numpy1.11.3,mingw4.7,matplotlib 2.0.0 ,libpython2.0)
conda install python=3.4 #这里根据自己需要修改,之后还得 conda install matplotlib
二,安装mingw
查看所有软件包:conda list
安装命令:
conda install mingw libpython
MinGW等文件夹会自动装到anaconda下面
在cmd的home目录中新建 .theanorc.txt 文件(注意名字中的“.”),根据自己安装MinGW的路径写上MinGW的路径
.theanorc.txt如下:
[blas]ldflags=-lblas #这里必须写上,不然有找不到文件的错误[gcc]cxxflags = -ID:\xxxx\MinGW #这里写上自己的MinGW路径
三,安装theano
pip install theano #注意一定要使用anaconda的pip
至此简单步骤就结束了
阅读安装文档地址:https://www.zhihu.com/question/36609400