0g-storage-node/tests/dep_pip3.sh

18 lines
244 B
Bash
Raw Normal View History

2024-01-03 10:24:52 +00:00
#!/bin/bash
set -e
function install() {
if [ "`pip3 show ${1%%=*}`" = "" ]; then
pip3 install $1
fi
}
install jsonrpcclient
install pyyaml
install pysha3
install coincurve
install eth_utils
install py-ecc
install web3
install eth_tester