CrypticSignal / video-quality-metrics

Uses FFmpeg to benchmark video encoders to compare VMAF/SSIM/PSNR with different encoder settings.
MIT License
117 stars 18 forks source link

[Bug] ModuleNotFoundError: No module named 'tqdm' #39

Closed polarathene closed 2 years ago

polarathene commented 2 years ago

Following your README, I ran the following and ran into this failure:

python main.py -ntm -ovp /tmp/video/a.mp4 -tvp /tmp/video/b.mkv -o test -psnr -ssim

Traceback (most recent call last):
  File "/tmp/video-quality-metrics-master/main.py", line 9, in <module>
    from arguments_validator import ArgumentsValidator
  File "/tmp/video-quality-metrics-master/arguments_validator.py", line 3, in <module>
    from utils import is_list
  File "/tmp/video-quality-metrics-master/utils.py", line 11, in <module>
    from tqdm import tqdm
ModuleNotFoundError: No module named 'tqdm'

A quick search revealed that's a package used for displaying a progress bar, so pip install tqdm resolved that. Probably should be added to requirements.txt?

CrypticSignal commented 2 years ago

Yes, tqdm is a dependency. I have now added it to requirements.txt.