安装 python 3.4 的软件包

installing packages for python 3.4

我的 windows 10 机器上安装了 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

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

这里是 scipy 的二进制包 Windows。

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

您可以使用 ./scripts/pip.exe install path/to/binary/scipy.whl 安装软件包。

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