1

我正在使用本地主机上的 Jupyter UI 运行官方 TF docker repo。似乎 TF 工作正常,因为我可以导入它,但是在尝试导入分发模块时出现错误:

print tf.__version__
import tf.distributions as dist

1.8.0

ImportErrorTraceback (most recent call last)
<ipython-input-3-4d440943cb46> in <module>()
      1 print tf.__version__
----> 2 import tf.distributions as dist

ImportError: No module named tf.distributions
4

1 回答 1

0

尝试这个

import tensorflow as tf
from tensorflow import distributions as dist

我认为您不能将导入别名用于 python 中的其他导入语句。我不太确定这一点,但我认为这就是问题所在。

仅供参考,我在 Python 3.5.2 和 Tensorflow 1.8.0 上对此进行了测试

于 2018-06-10T18:01:22.083 回答