【发布时间】:2018-05-11 19:19:07
【问题描述】:
我正在使用 Python 3.6 运行以下像素循环神经网络 (RNN) 代码
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
但是,出现了错误:
ModuleNotFoundError: No module named 'tqdm'
有人知道怎么解决吗?
【问题讨论】:
-
你真的安装了这个模块吗?如果有,你是怎么做到的?
-
是的,我已经使用 pip install tqdm 安装了
-
你可以运行命令并检查它是否安装或没有使用 pip list 或 pip show tqdm
-
如果你使用 Python3 不应该是
pip3 ...? -
我在使用 pip3 install tqdm 安装时出错。
标签: python tensorflow pixel rnn tqdm