anaconda安装OpenSpiel教程
时间: 2023-11-15 09:00:38 浏览: 278
Anaconda安装配置教程.docx
安装OpenSpiel需要先创建一个anaconda环境,然后下载编译安装OpenSpiel,最后跑测试试一下。具体步骤如下:
1. 创建anaconda环境:conda create -n openspiel python=3.7
2. 激活环境:conda activate openspiel
3. 下载OpenSpiel:git clone https://github.com/deepmind/open_spiel.git
4. 进入OpenSpiel目录:cd open_spiel
5. 安装各种依赖:./install.sh # Install various dependencies (note: assumes Debian-based distro!)
6. 升级Python依赖:pip3 install --upgrade -r requirements.txt # Install Python dependencies
7. 创建build目录:mkdir build
8. 进入build目录:cd build
9. 编译OpenSpiel:CXX=g++ cmake -DPython_TARGET_VERSION=3.6 -DCMAKE_CXX_COMPILER=g++ ../open_spiel make -j6 ctest -j6
10. 进入OpenSpiel目录:cd openspiel/openspiel
11. 运行测试:python3 python/examples/example.py --game=breakthrough python3 python/examples/matrix_game_example.py
阅读全文