System, configuration and Python performance

MRAB python at mrabarnett.plus.com
Mon Nov 1 20:04:27 EDT 2021


On 2021-11-01 23:02, Shaozhong SHI wrote:
> How to configure to improve Python performance in a system like the
> following:
> 
> Windows 10
> 
> System
> 
> Processor Intel(R) Core(TM) i7-9700 CPU @3.60GHz, 3.60 GHz
> Installed memory (RAM) 32.0 GB (31.8 GB usable)
> System type: 64-bit Operating System, x64-based processor
> 
> I found that the Python script was runnig slowly and wanted to find out
> what is going on and what activities it is doing.
> 
> I opened the Task Manager and found that there is not much CPU usage.
> 
> Do I need to do something like configuration to improve Python's
> performance?
> 
If CPU usage is low, then that isn't the cause of the slowness.

What about disk usage?

What about network usage?

If it's communicating across the internet, then it might be waiting for 
the other end. If that's the case, then there's probably not much you 
can do about it.


More information about the Python-list mailing list