maxim-s-barabash/ZebraTrace

Can't run it on windows

Opened this issue · 2 comments

Hi
I am on windows 10 machine, Installed python 3.10.5 and latest Qt5.
Can't run the program here is the code

C:\Users\Kimotio\Desktop\ZebraTrace-master\src>python ZebraTrace.pyw
Traceback (most recent call last):
File "C:\Users\Kimotio\Desktop\ZebraTrace-master\src\ZebraTrace.pyw", line 17, in
from zebratrace import zebratrace
File "C:\Users\Kimotio\Desktop\ZebraTrace-master\src\zebratrace_init_.py", line 18, in
from .app import ZQApplication
File "C:\Users\Kimotio\Desktop\ZebraTrace-master\src\zebratrace\app.py", line 31, in
from .geom.funcplotter2 import FuncPlotter
File "C:\Users\Kimotio\Desktop\ZebraTrace-master\src\zebratrace\geom\funcplotter2.py", line 28, in
sys.setcheckinterval(0xfff)
AttributeError: module 'sys' has no attribute 'setcheckinterval'. Did you mean: 'setswitchinterval'?

C:\Users\Kimotio\Desktop\ZebraTrace-master\src>

Please help

om-hb commented

Hi,
for me, changing sys.setcheckinterval(0xfff) to sys.setswitchinterval(0xfff) in ZebraTrace-master\src\zebratrace\geom\funcplotter2.py fix the issue (at first glance at least).

It works THANK YOU