在我的终端中,输入$ which python3,输出
$ which python3
/opt/local/bin/python3
我想将Atom配置为运行Python3脚本。在我的Atom Config中,
runner: python: "/opt/local/bin/python3"
但是,如果我在名为的某些脚本中运行以下脚本filename.py,
filename.py
import sys print(sys.version)
我得到以下输出:
2.7.11 (default, Feb 18 2016, 22:00:44) [GCC 4.2.1 Compatible Apple LLVM 7.0.2 (clang-700.1.81)]
如何正确设置PATH以使Python3.x脚本正确运行?我可以使用其他包装吗?
转到Atom的菜单栏->包->脚本->配置脚本(或者,您可以使用快捷键Shift + Ctrl + Alt + O)
然后键入python3到命令空间。希望它会起作用。
python3