【问题标题】:installing packages for python 3.4为 python 3.4 安装包
【发布时间】:2020-08-25 08:20:58
【问题描述】:

我的 Windows 10 机器上安装了 2 个版本的 python。 3.7 和 3.4。我需要为我的旧 python 发行版 3.4 安装一些包。对于某些软件包,有一个可用的可执行文件,我可以安装 matplotlib 和 numpy 之类的软件包。对于Scipympmath,我找不到相同的。也在尝试:

C:\Python34> ./scripts/pip.exe install scipy

Could not find a version that satisfies the requirement scipy (from versions: )
No matching distribution found for scipy

不起作用。如果有人可以帮助我安装这些软件包,那就太好了。

【问题讨论】:

    标签: python python-3.x scipy mpmath


    【解决方案1】:

    这里是 scipy for Windows 的二进制包。

    https://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy

    你可以使用./scripts/pip.exe install path/to/binary/scipy.whl来安装包。

    【讨论】:

      【解决方案2】:

      指定与 python 3.4 兼容的 scipy 版本,例如1.2.3:pip install scipy==1.2.3.

      【讨论】: