Pycharm远程连接到服务器运行错误can‘t open file ‘/tmp/.../a.py‘: [Errno 2] No such file or directory
问题描述
win11 Pycharm + Linux 服务器,运行代码后显示上述错误。即linux环境中没有xx文件。
分析:python默认到/tmp/下去找代码并执行,但x.py文件根本不再tem路径下。即路径映射出了问题。
解决方法
正确的映射。
pycharm中当前文件的小箭头, Edit Configuration,在Enviroment下的Path mappings,点击加号分别输出本地路径和远程路径,OK即可。但这种方法是暂时的,每次都要修改。
标签:tmp,file,服务器,Pycharm,open,远程 From: https://www.cnblogs.com/benbenlzw/p/17705956.html