我正在尝试按照此处列出的说明安装 h2o4gpu Python 模块:https ://github.com/h2oai/h2o4gpu/issues/464
pip 说它成功安装了所有软件包,包括 h2o4gpu-0.1.0。
但是我仍然得到
import h2o4gpu
ImportError: No module named h2o4gpu
和
kevin@Ubuntu-XPS:~/Downloads$ pip show tensorflow-gpu
Name: tensorflow-gpu
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: /usr/local/lib/python2.7/dist-packages
Requires: grpcio, mock, protobuf, enum34, gast, wheel, absl-py, backports.weakref, termcolor, six, numpy, tensorboard, setuptools, astor
kevin@Ubuntu-XPS:~/Downloads$ pip show h2o4gpu
kevin@Ubuntu-XPS:~/Downloads$
从而表明 pip 承认tensorflow-gpu
已安装,但不是h2o4gpu
.
我正在运行 Ubuntu 18.04 - 造成这种情况的原因可能是版本 18 尚不支持 h2o4gpu 吗?import h2o
工作正常。