在TensorFlow(// tensorflow / compiler / tests / ...)中运行'compiler'测试时,测试失败并显示错误:
ImportError: No module named backports
我尝试使用pip install安装backports
,但得到以下错误:
pip install backports:
Collecting backports
Could not find a version that satisfies the requirement backports (from versions: )
No matching distribution found for backports
有没有人遇到同样的错误? 使用python 2.7和Pip版本8.1.1。
答案 0 :(得分:0)
在经历堆栈失败追踪时,意识到在from backports import weakref
之前已记录ImportError: No module named backports
。
pip install backports.weakref
解决了错误。