在python 2.5版上安装matplotlib

时间:2017-06-02 06:27:26

标签: python matplotlib psse

我使用的是使用python 2.5版的电源系统分析软件包pss / e。

我想在这个环境中使用matplotlib(我从PSS / e运行python而不是相反,并且没有选择版本)。可能吗?怎么安装呢?我不认为我可以在旧版本中安装/使用PIP吗?

我是python的新手!使用64位win7机器。

1 个答案:

答案 0 :(得分:0)

我不知道pss / e,但所有matplotlib versions prior to 1.2.0都可以在SourceForge上找到。对于Python 2.5,我相信您需要 1.1.1 版本,您将能够找到here

matplotlib wepage上有installation instructions,但如果可能,建议使用PIP,我引用:

  

对于标准Python安装,请使用pip安装matplotlib:

python -m pip install -U pip setuptools
python -m pip install matplotlib

你应该拥有的PIP版本是(我认为)pip 1.3.1。如果您需要执行任何这些安装(除了matplotlib),请检查SO中的其他问题。这是最好的资源,因为你几乎找不到任何与这样一个旧版本交易的人在他们的脑海中是新鲜的(我已经使用Python大约7或8年了,我不认为我曾经使用过旧版本而不是2.7)。例如,见:

Pip installing into an older Python version

How to setup setuptools for python 2.6 on Windows?