[V1,2/2] doc: add the required python lib - threadpool
Commit Message
As use the python default threadpool to maintain the pool of worker threads,
so the python lib threadpool is required when run dts.
Signed-off-by: LihongX Ma <lihongx.ma@intel.com>
---
doc/dts_gsg/sys_reqs.rst | 1 +
requirements.txt | 1 +
2 files changed, 2 insertions(+)
@@ -59,6 +59,7 @@ Python Module “pexpect”: this module provides API to automate interactive SS
Python Module “docutils”: Docutils is a modular system for processing documentation into useful formats, such as HTML, XML, and LaTeX.
Python Module “pcapy”: Pcapy is a Python extension module that interfaces with the libpcap packet capture library. Pcapy enables python scripts to capture packets on the network.
Python Module “xlrd”: Xlrd is a Python module that extracts data from Excel spreadsheets.
+Python Module “threadpool”: Threadpool is a Python module that maintains a pool of worker threads to perform time consuming operations in parallel.
Please see installation instruction as the following:
@@ -37,3 +37,4 @@ docutils
pcapy
xlrd
scapy==2.4.3
+threadpool