We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying usage example 1 in Spyder v5.0.0, python 3.9.2 and won't work?
Just static white boxes at the side that don't grow with job progress....
The text was updated successfully, but these errors were encountered:
Maybe this is the same problem as in PyCharm, see #62 and #89. A workaround seems to be to add the following:
from fastprogress import fastprogress fastprogress.printing = lambda: True
Sorry, something went wrong.
I fixed it in spyder with:
import sys sys.stdout.isatty = lambda: True
Apparently fastprogress only works if sys.stdout.isatty() is True or if you are inside a notebook. See spyder-ide/spyder-kernels#294
sys.stdout.isatty()
No branches or pull requests
Trying usage example 1 in Spyder v5.0.0, python 3.9.2 and won't work?
Just static white boxes at the side that don't grow with job progress....
The text was updated successfully, but these errors were encountered: