“哪个版本”输出与PyCharm中的设置版本不同

时间:2016-08-01 03:30:36

标签: python pycharm

我目前使用的是最新版本的PyCharm和python 2.7(Home brew)。我在PyCharm中设置了python版本,如下所示:

enter image description here

但是,当我在同一个项目中运行代码时:

enter image description here

我得到这样的输出:

enter image description here

为什么?我怎样才能配置正确的Python?

谢谢!

1 个答案:

答案 0 :(得分:1)

您不应该使用which python来找出您正在使用的python。 试试这个:

import sys

print(sys.executable)