在运行命令时
G:\luminoth>lumi -h获取错误消息
Luminoth requires a TensorFlow >= 1.5 installation.
Depending on your use case, you should install either `tensorflow` or
`tensorflow-gpu` packages manually or via PyPI.尽管当我检查tensorflow模块详细信息时,它显示了
G:\luminoth>pip show tensorflow
Name: tensorflow
Version: 1.9.0
Summary: TensorFlow is an open source machine learning framework for everyone.
Home-page: https://www.tensorflow.org/
Author: Google Inc.
Author-email: opensource@google.com
License: Apache 2.0
Location: g:\python36\lib\site-packages
Requires: wheel, numpy, tensorboard, astor, protobuf, absl-py, six, termcolor, s
etuptools, gast, grpcio
Required-by:有什么事情要做吗?
发布于 2020-11-23 14:11:52
我也面临着同样的错误。我使用tensorflow 1.14,然后尝试在python shell中导入tensorflow。它给出错误'ImportError: DLL加载失败:找不到指定的过程‘。要解决此问题,请安装protobuf 3.6.0 pip install protobuf==3.6.0。这应该可以解决这个问题。
https://stackoverflow.com/questions/55728849
复制相似问题