我安装了 Python 3.6,但项目需要 Python 2.7。不过,我无法为 Python 2.7 安装软件包。让我们以numpy为例:
C:\Python27\python.exe -m pip install numpy
会告诉我 3.6 中已经满足要求。
C:\Python27\Scripts\pip2.7.exe install numpy
会告诉我 3.6 中已经满足要求。
当我尝试时,import numpy
它会给我一个错误。
我尝试将 Python 2.7 添加到我高于 Python 3.6 的路径中,但我仍然收到错误。
请帮助,这非常令人沮丧。
谢谢你。