mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 10:05:17 +00:00
18 lines
244 B
Bash
18 lines
244 B
Bash
|
#!/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
|