No module named 'tqdm'

A. Syam picture A. Syam · Nov 28, 2017 · Viewed 92.2k times · Source

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?

Answer

pushpendra chauhan picture pushpendra chauhan · Nov 28, 2017

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

pip install tqdm

for more info tqdm