We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Adam,
Thank you for wonderful port !
I have faced the same issue on RaspberryPi 3 as in the following ticket: #12
The solution was simple but take me a time to understand so, would suggest to add it as comment for installation on Rasberian(Linux?)
We need to grant super user access to python3 executable in the same way as bleno does for node executable.
This is especially problem when you use python environments and running as root is not an option.
So, the following line should be executed after workon command:
sudo setcap cap_net_raw+eip $(eval readlink -f which python3)
which python3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Adam,
Thank you for wonderful port !
I have faced the same issue on RaspberryPi 3 as in the following ticket:
#12
The solution was simple but take me a time to understand so, would suggest to add it as comment for installation on Rasberian(Linux?)
We need to grant super user access to python3 executable in the same way as bleno does for node executable.
This is especially problem when you use python environments and running as root is not an option.
So, the following line should be executed after workon command:
sudo setcap cap_net_raw+eip $(eval readlink -f
which python3
)The text was updated successfully, but these errors were encountered: