Python - pip install not found not matching version

时间:2017-09-27 09:38:33

标签: python linux centos pip python-2.6

我在CentOS 6.9中有一台机器由于各种原因我被迫使用python2.6.6。当我尝试使用pip下载库时,我尝试:

sudo -E pip install someLibrary

我得到了pandas例如

  

无法找到满足要求pandas的版本(来自   版本:)没有为pandas找到匹配的分发

我怀疑它与我使用的python版本有关,并且已经移动了存储库或其他任何东西。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

<p>Country: {{ country }}, city: {{ city }}.</p>
呵呵,呵呵混淆了。 :-)))下次再努力...如果你不想要答案......

好吧,pandas不支持Python 2.6,只支持2.7 +。

Version 0.17.1似乎是支持Python 2.6的最后一个。使用pip安装

pip install someLibrary
…
No matching distribution found for pandas 

或来自sources