'ls' 在 Anaconda Python 2.7 Spyder 中无法识别

'ls' is not recognized in Anaconda Python 2.7 Spyder

我 运行 我在 Anaconda Spyder Python 2.7 中的代码 Windows 7 64 位。

但是当我运行这个代码时:

!ls -lh ./training3.crfsuite

我收到这个错误:

'ls' is not recognized as an internal or external command, operable program or batch file.    

有人知道为什么吗?

谢谢。

ls 是一个 *nix 命令,默认情况下不安装在 Windows 下。请改用 dir 及其适当的选项。

您可以使用 Anaconda Prompt 命令行安装 m2-base 实用程序,您将拥有基本的 Linux 命令。:

conda install m2-base