ansible_xdata/roles/game_pytho38/tasks/install_pkg.yml
2021-01-19 12:55:25 +08:00

37 lines
602 B
YAML

---
- name: 安装pymongo
shell:
chdir: ~
cmd: pip3 install pymongo==3.11.2
- name: 安装bson
shell:
chdir: ~
cmd: pip3 install bson==0.5.10
- name: 安装gevent
shell:
chdir: ~
cmd: pip3 install gevent==20.12.1
- name: 安装 gevent-websocket
shell:
chdir: ~
cmd: pip3 install gevent-websocket==0.10.1
- name: 安装 greenlet
shell:
chdir: ~
cmd: pip3 install greenlet==1.0.0
- name: 安装 msgpack
shell:
chdir: ~
cmd: pip3 install msgpack==1.0.2
- name: 安装 pycparser
shell:
chdir: ~
cmd: pip3 install pycparser==2.20