I run my codes in Anaconda Spyder Python 2.7 for Windows 7 64bits.
But when I run this code:
!ls -lh ./training3.crfsuite
I received this error:
'ls' is not recognized as an internal or external command, operable program or batch file.
Does anyone know why?
Thank you.
ls
is a *nix command, and is not installed under Windows by default. Usedir
and its appropriate options instead.