作者:sumviewbk_405 | 来源:互联网 | 2023-07-24 08:28
此文是为https:github.comBarclayIItracking-with-rnn配置环境。https:github.comTheanoTheano下载theano项目T
此文是为https://github.com/BarclayII/tracking-with-rnn 配置环境。
https://github.com/Theano/Theano下载theano项目Theano-master.zip
https://github.com/keras-team/keras下载keras项目Keras-master.zip
[1] 打开Anaconda Prompt,创建虚拟环境,名称theano
conda create -n theano python=3.6
在创建了环境之后,就可以将以上下载的包放到\envs\theano\Lib\site-packages\下了,解压它们。
[2] 激活theano
activate theano
[3] 打到Theano解压目录
cd /d xxx\envs\theano\Lib\site-packages\Theano-master
然后
python setup.py install
为了能在anaconda中使用,接着
pip install Theano
发现已经在anaconda的虚拟环境下安装好了,那么这一句其实是不用了
[4] 打到Keras解压目录
cd /d D:\installation_file\anaconda_installation_file\envs\theano\Lib\site-packages\keras-master
然而在运行
python setup.py install
的时候出现了错误,“ModuleNotFoundError:No module named ‘setuptools._deprecation_warning’”。
参考https://blog.csdn.net/qq_42006303/article/details/88170066,通过
pip install --upgrade setuptools
由于我是连接的流量下载的,下载的时候要在网上download一些包的时候速度超级慢,只能手动去下载,比如在下载scipy的时候我就选择了自己去下载了离线安装,
https://files.pythonhosted.org/packages/9e/fd/9a995b7fc18c6c17ce570b3cfdabffbd2718e4f1830e94777c4fd66e1179/scipy-1.3.0-cp36-cp36m-win_amd64.whl#sha256=c19a7389ab3cd712058a8c3c9ffd8d27a57f3d84b9c91a931f542682bb3d269d
下载之后,在theano的虚拟环境下安装,先打到相应目录(目录是自己建的)
cd /d xxx\envs\theano\Lib\site-packages\keras-master\scipy_pkg_downloaded
安装
pip install scipy-1.3.0-cp36-cp36m-win_amd64.whl
安装完成后,再回到keras_master目录下去安装,
cd /d xxx\envs\theano\Lib\site-packages\keras-master
继续安装keras,已安装好的包会直接成功的,
python setup.py install
成功。到此theano和keras已经安装完成。