SimpleNostr: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Category:Nostr = Install = <pre> 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 ... deactivate </pre>") |
|||
Line 8: | Line 8: | ||
python3 -m venv bobenv | python3 -m venv bobenv | ||
source ./bobenv/bin/activate | source ./bobenv/bin/activate | ||
pip3 install websockets secp256k1 | |||
python message.py | |||
... | ... | ||
deactivate | deactivate | ||
</pre> | </pre> |
Revision as of 02:27, 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 python message.py ... deactivate