Tensorflow:lable_image"无法下载和安装inception_v3_2016_08_28_frozen.pb.tar.gz"

时间:2017-04-17 13:41:07

标签: tensorflow

运行此代码时

**% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0curl: (77) error setting certificate verify locat
ions:
  CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now**

我收到了以下错误:

{{1}}

知道它有什么问题吗?

亲切的问候, 曼索尔

1 个答案:

答案 0 :(得分:0)

我不知道是什么导致此错误消息(因为这看起来像某些证书错误),但我认为目标目录必须在执行tar命令之前存在。以下命令链应满足您的需求:

curl -L -o test.tar.gz "https://storage.googleapis.com/download.tensorflow.org/models/inception_v3_2016_08_28_frozen.pb.tar.gz" && mkdir -p tensorflow/examples/label_image/data && tar xvzf test.tar.gz -C tensorflow/examples/label_image/data && rm test.tar.gz