解决FileNotFoundError: [Errno 2] No such file or directory

问题截图:

解决FileNotFoundError: [Errno 2] No such file or directory_第1张图片

我们可以看到’best.pth.tar’和’test_snli.py’在同一个文件夹下面,但在运行后提示找不到’best.pth.tar’文件。

解决方法:

在运行python时,vscode不会默认切换到文件所在的文件夹下,因此我们需要修改默认设置。

解决FileNotFoundError: [Errno 2] No such file or directory_第2张图片
打开vscode,选择“文件”→“首选项”→“设置”,点击“用户”→“扩展”→“Python”,在右边找到“Terminal: Execute in File Dir”,勾选“When executing a file in the terminal, whether to use execute in the file’s directory, instead of the current open folder.”

参考链接:

https://www.zhihu.com/question/388688408/answer/1161736689

你可能感兴趣的:(Python,python)