pandas 错误:“cat”未被识别为内部或外部命令
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/44159645/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 03:41:22 来源:igfitidea点击:
Error : 'cat' is not recognized as an internal or external command
提问by Rohan Mitra
Why I keep getting this error in one of my Jupyter Notebook
为什么我在其中一台 Jupyter Notebook 中不断收到此错误
!cat ../data/filename.csv
Error:
错误:
'cat' is not recognized as an internal or external command,
operable program or batch file.
anyone, please help.
任何人,请帮忙。
回答by Scott Boston
Try:
尝试:
!more ../data/filename.csv
Or
或者
!type ../data/filename.csv
回答by Ramzan Shahid
Install '[Cygwin][1]' to add Linux command in the window. download from this link https://www.cygwin.com.
安装 '[Cygwin][1]' 以在窗口中添加 Linux 命令。从此链接https://www.cygwin.com下载。