如何使用蟒蛇使用python?

时间:2019-01-01 06:12:49

标签: python anaconda

我在Windows 10 pc中为python 3.7安装了anaconda

当我将python放在gitBash中时,它说

bash: python: command not found

如何全局使用python?所以我可以在任何地方使用python命令。

4 个答案:

答案 0 :(得分:1)

您应该执行“ Anaconda Prompt”,然后可以从那里启动“ python”。

不建议在Windows 10上的Anaconda安装期间“添加到路径”。因此,您的路径中没有来自Anaconda的普通python。

答案 1 :(得分:0)

将python添加到您的路径中,如下所示:

$ PATH=$PATH:/path/to/python

并且不指定.exe,则可以从git bash中使用它。

答案 2 :(得分:0)

@Nahid,您可以在Conda not recognized as internal or external after creating new environment上查看我的答案。

  • 关闭已打开的终端。

  • 按照该链接中的说明进行操作。

  • 打开新终端(Git BASH)。

  • 键入winpty pythonpython -i(仅在终端上键入python无效)。

在这里遇到任何问题,请在这里享受并询问/评论。

答案 3 :(得分:0)

这取决于安装Anaconda的位置。除非您已安装Linux版本的Anaconda(首选Miniconda),否则需要将gitBash指向Windows Python。例如。在gitBash

alias python='winpty python.exe'

如果您想要特定的Python'winpty fullpath / python.exe'使其永久存在,请将该命令添加到您的.bashrc

cd ~
touch .bashrc

然后添加上面的命令。保存并重新启动终端。

类似的问题:Python not working in the command line of git bash