Troubleshooting

“Command not found: docker” → Open Docker Desktop and wait until it says Running.

“python3 not found” → Try python instead.

“pip3 not found” → Try pip instead.

“Address already in use” → Start with different ports:

python3 community_launcher.py testnet-node --rpc-port 19081 --p2p-port 19080

See logs (what’s happening):

# normal node
docker logs testnet-node -f
# service node
docker logs service-node -f
# wallet service
docker logs wallet-rpc -f

Press Ctrl + C to exit the log view.

Start clean (when stuck):

python3 community_launcher.py cleanup

Last updated