mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

- Setup single/multi node BigchainDB cluster using - Vagrant - Ansible - Updated documentation
14 lines
355 B
YAML
14 lines
355 B
YAML
---
|
|
- name: Upgrade pip
|
|
shell: "pip3 install --upgrade pip"
|
|
when: python_pip_upgrade
|
|
tags: [bigchaindb-driver]
|
|
|
|
- name: Upgade setuptools
|
|
shell: "pip3 install --upgrade setuptools"
|
|
when: python_setuptools_upgrade
|
|
tags: [bigchaindb-driver]
|
|
|
|
- name: Install BigchainDB Driver
|
|
shell: "pip3 install bigchaindb-driver"
|
|
tags: [bigchaindb-driver] |