You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having this problem with a custom bar. At the end of the progress bar there are still some stats even after the bar is 100% complete.
Info: Running on Windows 10, Spyder 5.5.4, Python 3.11.8, alive_progress version 3.1.5
Sample code:
import time
just_cat_bar = animations.bar_factory('\N{cat}')
with alive_bar(100, bar=just_cat_bar, spinner=None, force_tty=True, dual_line=True, enrich_print=False) as bar:
for i in range(100):
time.sleep(.05)
bar()
The text was updated successfully, but these errors were encountered:
Unfortunately, I can't do much to improve this. Windows historically causes problems for alive-progress.
I think Windows does not implement ANSI Escape Codes correctly, so I'd suggest avoiding dual_line, which is heavy on them.
You could also check if this IDE of yours is really interpreting these codes, PyCharm for instance disables it by default, we have to turn it on manually.
Having this problem with a custom bar. At the end of the progress bar there are still some stats even after the bar is 100% complete.
Info: Running on Windows 10, Spyder 5.5.4, Python 3.11.8, alive_progress version 3.1.5
Sample code:
The text was updated successfully, but these errors were encountered: