Dustin Spicuzza
Dustin Spicuzza
How do you have OpenCV installed?
Also, you may find it easier to get realtime help at https://gitter.im/robotpy/robotpy-wpilib if you're doing it now.
Yeah, the thing you would need to do then is put the include/lib files somewhere that python can find them. Maybe in the 'include' directory for site-packages? Another route you...
You can also figure out where python keeps its stuff by running `py -3 -c "import sysconfig; print(sysconfig.get_path('include'))"` ... there's a bunch of variables you can look at: https://docs.python.org/3/library/sysconfig.html
I believe that's an error related to pybind11 and Visual Studio 2017. It looks like they just released a new version of pybind11 yesterday, I haven't tested with it yet....
This code will block an event loop, seems like this should be implemented with trollius and set a future instead.
Almost. You would return a future object, yes. And then you would do some socket operations using the async API (not using socket directly), and when the connection finally succeeds...
I've got a working protobuf working on my machine, but it was a pain. Hopefully that will be resolved soon. From what I've hit so far, there are byte/str problems...
Yup yup. I'll also update the travis.yml too. I don't want to update that until protobuf has a pypi package that is python3 compatible.
The current version of pip will not install an alpha release unless the user specifies --pre, or if there is an == dependency, thus why I selected that. Once protobuf...