Open
Description
I just installed gr 1.13.0 via
pip install gr
with
Python 3.8.2 (tags/v3.8.2:7b3ab59, Feb 25 2020, 23:03:10) [MSC v.1916 64 bit (AMD64)] on win32
Also, in
https://github.com/sciapp/python-gr/blob/master/examples/wx_ex.py
I had to change for Python 3.8 map()
z = map(lambda x: x & 0xff, d)
to
z = list(map(lambda x: x & 0xff, d))
as init expects a list, and the first call to z on line 73 empties the generator.
I now just get
GKS: Wx support not compiled in
So, how to go about the wx build?
Our goal is to start a drop-in replacement for wx.lib.plot(), which is terribly slow for samples>~100k
Metadata
Metadata
Assignees
Labels
No labels