PyNico
PyNico

Reputation: 695

Python program is slow on another computer

i wrote a program using Wxpython-32 bit-3-3-5.0 (a standalone python distrib) The problem is that the program is running very well on my computer. But when used on another computer it can be very slow. This is a real-time communication software with an embedded system.

Both computer run Windows 8.1 x64 with the same hardware (i5, 4go ram), i also tried with an Arch-linux, i got the same problem.

What could be the problem ? how can i try to solve it ?

Thank's !

Upvotes: 0

Views: 696

Answers (1)

noxym
noxym

Reputation: 26

Use cProfile to know what do you need to optimize. If using PyQt signals or a signal system for your real time communication, it can slow down the program

Upvotes: 1

Related Questions