在 Colaboratory 上安装 cleverhans
Installing cleverhans on Colaboratory
我正在尝试安装 cleverhans (https://github.com/tensorflow/cleverhans)
我是运行下面的命令
!pip install -q -e git+http://github.com/tensorflow/cleverhans.git#egg=cleverhans
但是,当我尝试执行 import cleverhans
时,我收到一条错误消息,指出没有这样的模块。
PS 如果我尝试在我的本地机器上安装模块,源存储在 ~/.src/cleverhans
.
安装似乎没有正确更新 python 路径。这是对我有用的片段:
!pip install -qq -e git+http://github.com/tensorflow/cleverhans.git#egg=cleverhans
import sys
sys.path.append('/content/src/cleverhans')
import cleverhans
我正在尝试安装 cleverhans (https://github.com/tensorflow/cleverhans)
我是运行下面的命令
!pip install -q -e git+http://github.com/tensorflow/cleverhans.git#egg=cleverhans
但是,当我尝试执行 import cleverhans
时,我收到一条错误消息,指出没有这样的模块。
PS 如果我尝试在我的本地机器上安装模块,源存储在 ~/.src/cleverhans
.
安装似乎没有正确更新 python 路径。这是对我有用的片段:
!pip install -qq -e git+http://github.com/tensorflow/cleverhans.git#egg=cleverhans
import sys
sys.path.append('/content/src/cleverhans')
import cleverhans