python文件

No such file or directory

原因:
linux下的文本文件以ascii码为10的字符表示换行。(就是换行符\n)

而windows下则使用连续的13和10两个字符。(是回车\r和换行符\n)

解决:
在vim的命令模式下输入:
set format=unix

相关文章:

  • 2021-09-30
  • 2022-01-23
  • 2022-12-23
  • 2021-06-02
  • 2022-02-15
  • 2021-12-24
  • 2021-06-27
猜你喜欢
  • 2021-12-02
  • 2022-01-20
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2021-10-04
相关资源
相似解决方案