Files
easy-rl/projects/parl_tutorials/README.md
2022-11-06 12:15:36 +08:00

19 lines
487 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## 运行环境
由于```parl```和```paddle```容易与notebook相关模块发生版本冲突因此推荐新建一个Conda环境
```bash
conda create -n parl python=3.7
```
然后安装```parl```和```paddle```
```bash
pip install parl==2.0.5
pip install paddlepaddle-gpu==2.3.2 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install paddlepaddle==2.3.2 -i https://pypi.tuna.tsinghua.edu.cn/simple
```
安装其他依赖:
```bash
pip install -r parl_requirements.txt
```