我的Python版本存在很大问题......
如果我运行"which python"
,我会/Library/Frameworks/Python.framework/Versions/3.4/bin/python
但是,如果我现在运行“python”,则启动python 2.7.1。
如果我输入"which pip?
,我会
/Library/Frameworks/Python.framework/Versions/3.4/bin/pip
如果我现在输入"sudo pip install numpy"
。安装到3.4就好了。
如果我现在输入"sudo pip2.7 install numpy"
。我明白了:
Requirement already satisfied (use --upgrade to upgrade): numpy in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python
现在,如果我输入"python"
,则会启动2.7.1版。我输入“import numpy"
,我得到"ImportError: No module named numpy"
。
我假设我的原子跑者指向系统'python'。我不能运行run python:2.7,但它只是忽略了它。
任何帮助都会很棒......我正在运行Mac,而且我是python的新手。