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