SimpleNostr: Difference between revisions
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
python3 -m venv bobenv | python3 -m venv bobenv | ||
source ./bobenv/bin/activate | source ./bobenv/bin/activate | ||
pip3 install websockets secp256k1 | pip3 install websockets secp256k1 bech32 | ||
python message.py | python message.py | ||
... | ... | ||
deactivate | deactivate | ||
</pre> | </pre> |
Revision as of 02:28, 9 October 2023
Install
sudo apt install python3-venv pip3 install virtualenv git clone https://github.com/ksfi/simple-nostr.git cd simple-nostr python3 -m venv bobenv source ./bobenv/bin/activate pip3 install websockets secp256k1 bech32 python message.py ... deactivate