You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,3 +54,16 @@ The documentation for the API can be found [here](https://lbry.tech/api/sdk).
54
54
Daemon defaults, ports, and other settings are documented [here](https://lbry.tech/resources/daemon-settings).
55
55
56
56
Settings can be configured using a daemon-settings.yml file. An example can be found [here](https://github.com/lbryio/lbry-sdk/blob/master/example_daemon_settings.yml).
57
+
58
+
## Troubleshooting
59
+
60
+
### Error: unsupported hash type 'ripemd160'
61
+
62
+
If you see this error when running `lbrynet start`, it likely means your OpenSSL or Python installation is missing RIPEMD160 support.
63
+
64
+
To fix it:
65
+
66
+
- Ensure you are using a version of Python compiled with OpenSSL support.
67
+
- On Ubuntu/Debian, try: `sudo apt install libssl-dev` and reinstall Python.
68
+
- Alternatively, use a precompiled Python version (e.g., via `pyenv install 3.8.18` after `libssl-dev` is installed).
0 commit comments