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
This py plugin supports Python2.7 on default. If build py plugin under Python3.x, build modules using `--tags` option, like:
52
+
53
+
```sh
54
+
build_sensorbee --only-generate-source=true
55
+
go build --tags=py3.5 -o sensorbee sensorbee_main.go
56
+
```
57
+
58
+
Currently py package supports "py3.4", "py3.5" and "py3.6" tags. This support option using build constraints is beta version and it is possible to change in future.
* sensorbee/py supports only python2.x, not support 3.x
234
244
* on windows OS, user need to customize cgo code to link between go and python.
235
245
* To reload updated modules, need to re-run SensorBee. Python modules are imported when SensorBee setup to run, and cannot reload modifies python modules in SensorBee running.
0 commit comments