2017-07-01 48 views
1

我正在嘗試將訓練文本文件轉換爲bin文件以訓練tensorflow的文本。但我遇到了以下錯誤:版本控制的Tensorflow textsum錯誤

$ python textsum/data_convert_example.py --command text_to_binary --in_file data/tt.txt --out_file data/bin_data_train 
Traceback (most recent call last): 
    File "textsum/data_convert_example.py", line 12, in <module> 
    import tensorflow as tf 
    File "/usr/local/lib/python2.7/dist-packages/tensorflow/__init__.py", line 24, in <module> 
    from tensorflow.python import * 
    File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/__init__.py", line 104, in <module> 
    from tensorflow.python.platform import test 
    File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/platform/test.py", line 57, in <module> 
    import mock    # pylint: disable=g-import-not-at-top,unused-import 
    File "/usr/local/lib/python2.7/dist-packages/mock/__init__.py", line 2, in <module> 
    import mock.mock as _mock 
    File "/usr/local/lib/python2.7/dist-packages/mock/mock.py", line 71, in <module> 
    _v = VersionInfo('mock').semantic_version() 
    File "/usr/local/lib/python2.7/dist-packages/pbr/version.py", line 461, in semantic_version 
    self._semantic = self._get_version_from_pkg_resources() 
    File "/usr/local/lib/python2.7/dist-packages/pbr/version.py", line 448, in _get_version_from_pkg_resources 
    result_string = packaging.get_version(self.package) 
    File "/usr/local/lib/python2.7/dist-packages/pbr/packaging.py", line 755, in get_version 
    name=package_name)) 
Exception: Versioning for this project requires either an sdist tarball, or access to an upstream git repository. It's also possible that there is a mismatch between the package name in setup.cfg and the argument given to pbr.version.VersionInfo. Project name mock was given, but was not able to be found. 

請幫助我。我在python 2.7.2中使用tensorflow 1.2.0。

回答

1

您必須在安裝時遇到問題。

請嘗試以下命令:

pip install --upgrade mock pip install --upgrade distribute

如果它不工作,你應該給我們介紹一下你如何安裝tensorflow更多詳細資料(PIP暢達克隆& setup.py???),並嘗試從頭開始重新安裝。

希望它可以幫助

+0

我只有使用pyinstaller發行時本tensorflow錯誤,並從舊的模擬或分發版本來的錯誤?升級模擬和分發並沒有幫助,但顯然它抓住了一些錯誤的組合。 – bw4sz