Instale o TQDM
sudo pip3 install tqdm
Nels
sudo pip3 install tqdm
#Latest PyPI Stable Release
pip install tqdm
#Latest Conda Release
conda install -c conda-forge tqdm
#Lastest Dev Release
pip install "git+https://github.com/tqdm/tqdm.git@devel#egg=tqdm"
#Latest Docker Release
docker pull tqdm/tqdm
docker run -i --rm tqdm/tqdm --help
#Latest Snapcraft Release (3 options)
snap install tqdm # implies --stable, i.e. latest tagged release
snap install tqdm --candidate # master branch
snap install tqdm --edge # devel branch
from tqdm import tqdm
for i in tqdm(range(10000)):
pass
from tqdm import tqdm_notebook as tqdm
tqdm().pandas()
for x in tqdm(my_list):
# do something with x
from tqdm import tqdm
for i in tqdm(range(10000)):
...
from tqdm import tqdm
for i in tqdm(range(10000)):
...