question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

ModuleNotFoundError: No module named 'progress'

See original GitHub issue

I get this error when I use python -m pip install vidstab.

...Collecting progress (from vidstab)
  Using cached https://files.pythonhosted.org/packages/e9/ff/7871f3736dc6707435b2a2f217c46b5a5bc6ea7e0a9a443cd69146a1afd1/progress-1.4.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\Bernard\AppData\Local\Temp\pip-install-w0qzry3z\progress\setup.py", line 5, in <module>
        import progress
    ModuleNotFoundError: No module named 'progress'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\Bernard\AppData\Local\Temp\pip-install-w0qzry3z\progress\

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:9 (3 by maintainers)

github_iconTop GitHub Comments

4reactions
AdamSpannbauercommented, Jul 28, 2018

Looks like the issue is coming up when the process is trying to install the progress package. Try installing the package by itself by running pip install progress from the command line. If that fails try running running pip install --upgrade --force-reinstall progress.

1reaction
liam274commented, Dec 10, 2021

But at python: Traceback (most recent call last): File “C:\Users\classroom\Desktop\test.py”, line 2, in <module> from progress.bar import Bar ModuleNotFoundError: No module named ‘progress’

Read more comments on GitHub >

github_iconTop Results From Across the Web

ModuleNotFoundError: No module named 'progress'
Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'progress' How to remove the ModuleNot.
Read more >
progress - PyPI
Easy progress reporting for Python. pypi. Demo. Bars. There are 7 progress bars to choose from: Bar. ChargingBar. FillingSquaresBar. FillingCirclesBar.
Read more >
ModuleNot Found Error: No module named 'progress'
python程序报错:. from progress.bar import Bar ModuleNotFoundError: No module named 'progress'. 解决办法:. pip install progress.
Read more >
ModuleNotFoundError: No Module Named 'Serial' in Python
Quick Fix: Python raises the ModuleNotFoundError: No module named 'serial' when it cannot find the library pyserial because you haven't installed pyserial ...
Read more >
Why loading a python module appears to uninstall modules?
which results in the error ModuleNotFoundError: No module named 'progress.bar'; 'progress' is not a package and now script 1 produces the ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found