Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No module named 'tqdm'

I am running the following pixel recurrent neural network (RNN) code using Python 3.6

import os import logging  import numpy as np from tqdm import trange import tensorflow as tf  from utils import * from network import Network from statistic import Statistic 

However, there was an error:

ModuleNotFoundError: No module named 'tqdm' 

Does anyone know how to solve it?

like image 928
A. Syam Avatar asked Nov 28 '17 10:11

A. Syam


People also ask

How do I fix ModuleNotFoundError No module named tqdm?

The Python "ModuleNotFoundError: No module named 'tqdm'" occurs when we forget to install the tqdm module before importing it or install it in an incorrect environment. To solve the error, install the module by running the pip install tqdm command.

What is tqdm module in Python?

tqdm is a library in Python which is used for creating Progress Meters or Progress Bars. tqdm got its name from the Arabic name taqaddum which means 'progress'. Implementing tqdm can be done effortlessly in our loops, functions or even Pandas.

What does tqdm stand for?

tqdm derives from the Arabic word taqaddum (تقدّم) which can mean “progress,” and is an abbreviation for “I love you so much” in Spanish (te quiero demasiado).


1 Answers

You need to install tqdm module, you can do it by using python pip.

pip install tqdm 

for more info tqdm

like image 74
pushpendra chauhan Avatar answered Sep 18 '22 10:09

pushpendra chauhan