我不能 运行 ipython 在 cmd 上 windows 七
I can`t run ipython on cmd on windows seven
我在我的终端上使用 pip
命令安装了 ipython
,但是如果我在 cmd 中键入 ipython
则会出现此错误:
'ipython' is not recognized as an internal or external command
ipython
可能未安装在您的 PATH
中。这里最简单的方法是使用 the Python launcher for Windows 通过已安装的模块启动它(Python 知道在哪里可以找到,而 OS 不需要找到它),例如:
py -3 -mIPython
应该为您机器上安装的最新版本 Python 3 启动已安装的 IPython。 -3
指定你想要 Python 3(最新的),而 -m
是一个通用的 Python 开关,意思是“运行 提供的模块名称作为主要该程序的入口点,按照正常的导入规则进行查找。
我在我的终端上使用 pip
命令安装了 ipython
,但是如果我在 cmd 中键入 ipython
则会出现此错误:
'ipython' is not recognized as an internal or external command
ipython
可能未安装在您的 PATH
中。这里最简单的方法是使用 the Python launcher for Windows 通过已安装的模块启动它(Python 知道在哪里可以找到,而 OS 不需要找到它),例如:
py -3 -mIPython
应该为您机器上安装的最新版本 Python 3 启动已安装的 IPython。 -3
指定你想要 Python 3(最新的),而 -m
是一个通用的 Python 开关,意思是“运行 提供的模块名称作为主要该程序的入口点,按照正常的导入规则进行查找。