我正在尝试使用python 3,pip和pip3正确安装。我在Mac上工作,默认情况下。我有Python 2.7.10
python -V
Python 2.7.10
python3 -V
Python 3.5.1
安装python3 pip和pip3以便将pip和pip3都可以链接到python3的安装命令的正确顺序是什么? 这是我尝试查看已有版本时得到的:
$ pip -V
-bash: /usr/local/bin/pip: No such file or directory
$ pip3 -V
pip 7.1.2 from /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages (python 3.5)
我需要正确执行此操作,以便以后安装numpy,因为现在有了以上内容,我得到了:
$ pip3 install numpy
Collecting numpy
Could not find a version that satisfies the requirement numpy (from versions: )
No matching distribution found for numpy
答案 0 :(得分:0)
我已经解决了。如@keithpjolley所建议。我安装了anaconda,启动了它,然后使用了以下命令:
conda install numpy
我让它解决环境。起初它给了我numpy的旧版本,所以我升级了:
conda install numpy=1.13
现在一切都在使用我的代码。