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
bitcoin@raspibolt:~/lightning/plugins $ lightning-cli plugin start rebalance/rebalance.py
{
"code": -32602,
"message": "rebalance/rebalance.py is not executable: No such file or directory"
}
Core Lightning v0.10.2
The text was updated successfully, but these errors were encountered:
You need to make the file executable: chmod +x rebalance/rebalance.py.
This is because lightningd will fork and execve the plugin entrypoint. The top of the plugin has a shebang that tells the OS to use the python3 interpreter to run the file.
Hello, I've cloned plugins with:
git clone https://github.com/lightningd/plugins.git
Installed requirements with:
pip install -r rebalance/requirements.txt
Then, I run:
Core Lightning v0.10.2
The text was updated successfully, but these errors were encountered: