Add `psutil` and `ipython` to requirements.txt (#7998)
Browse files* Add `psutil` and `ipython` to requirements.txt
Lightweight packages used by YOLOv5 for system utilization (psutil) and interactive notebooks (IPython)
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* sort alphabetically
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- requirements.txt +3 -1
requirements.txt
CHANGED
@@ -31,7 +31,9 @@ seaborn>=0.11.0
|
|
31 |
# openvino-dev # OpenVINO export
|
32 |
|
33 |
# Extras --------------------------------------
|
|
|
|
|
|
|
34 |
# albumentations>=1.0.3
|
35 |
# pycocotools>=2.0 # COCO mAP
|
36 |
# roboflow
|
37 |
-
thop # FLOPs computation
|
|
|
31 |
# openvino-dev # OpenVINO export
|
32 |
|
33 |
# Extras --------------------------------------
|
34 |
+
ipython # interactive notebook
|
35 |
+
psutil # system utilization
|
36 |
+
thop # FLOPs computation
|
37 |
# albumentations>=1.0.3
|
38 |
# pycocotools>=2.0 # COCO mAP
|
39 |
# roboflow
|
|