1

我正在尝试安装cleverhans(https://github.com/tensorflow/cleverhans

我正在运行以下命令

!pip install -q -e git+http://github.com/tensorflow/cleverhans.git#egg=cleverhans

但是,当我尝试这样做时,import cleverhans我收到一条错误消息,指出没有这样的模块。

PS 如果我尝试在本地机器上安装模块,源存储在~/.src/cleverhans.

4

1 回答 1

4

看起来安装没有正确更新 python 路径。这是一个对我有用的片段:

!pip install -qq -e git+http://github.com/tensorflow/cleverhans.git#egg=cleverhans
import sys
sys.path.append('/content/src/cleverhans')
import cleverhans
于 2017-11-28T16:44:23.310 回答