我刚刚安装了python 3.6.2。 然后我打开mac终端并输入:
python3 -V
它说:“找不到命令”
然后我将目录更改为桌面并重复相同的命令,它给出了相同的结果。然后我试了一下:
type -a python
它说:python:not found
答案 0 :(得分:2)
首先应该将python可执行路径添加到环境变量$ PATH中,然后您就可以在任何地方运行命令。
在您的终端中:
touch ~/.bash_profile; open ~/.bash_profile
export PATH="path-to-your-python-folder:$PATH"
save it and exit (Command + Q)
force execute it with: source ~/.bash_profile
重启你的系统,然后你应该可以运行它。