--------------------------------------------------------------------------------------
https://github.com/yenchenlin1994/DeepLearningFlappyBird
FlappyBird 的源码地址。
参考了下面的游戏设计
https://github.com/sourabhv/FlapPyBird
参考了下面地址的ai设计
https://github.com/asrivat1/DeepLearningVideoGames
然后要安装环境,系统直接选Ubuntu14.04的版本,否则太旧了,会出现很多问题。
- Python 2.7 or 3
- TensorFlow 0.7
- pygame
- OpenCV-Python
-------------------------------
安装 numpy
apt-get install python-numpy
apt-get install python-scipy
安装matplotlib相对复杂一些
需要先安装其依赖的包libpng和freetype
安装libpng:
sudo apt-get install libpng-dev
安装freetype:
- cd ~/Downloads
- wget http://download.savannah.gnu.org/releases/freetype/freetype-2.4.10.tar.gz
- tar zxvf freetype-2.4.10.tar.gz
- cd freetype-2.4.10/
- ./congfigure
- make
- sudo make install
安装pip,然后通过pip来安装matplotlib:
sudo apt-get install python-pip
安装好pip后就可以用下面的命令来查找matplotlib和查看其安装状态
sudo pip search matplotlib
安装matplotlib
sudo pip install matplotlib
----------------------------------
安装 TensorFlow 官网说明下载方式
https://www.tensorflow.org/versions/r0.8/get_started/os_setup.html
---------------------------------
安装pygame
sudo apt-get install python-pygame
-------------------------------------
安装 OpenCV-Python
sudo apt-get install python-opencv
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:DeepLearningFlappyBird-深度学习玩游戏-1-环境搭建 - Python技术站