Skip to content

GKS: Wx support not compiled in #20

Open
@rjsdotorg

Description

@rjsdotorg

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions