Closed wcmiracle closed 3 years ago
Hey @wcmiracle, those are not problems, just different platforms, with different behaviors. Linux is the standard one, it just works.
Windows has a bug that ANSI escape codes do not work by default, to make they work you have to:
import os
os.system('')
(In the soon-to-be-released 2.0 this is sent automatically)
PyCharm do not emulate complete terminals, it isn't interactive. So you have to both:
force_tty=True
to alive_bar
.Ok? That should make those all work as expected 👍
Thank you very much for answering my confusion, I prefer progress to tqdm and hope you can make it very good.
Great, you're welcome!
code
Linux
Windows
Pycharm