Traceback (most recent call last): File "kmeans2.py", line 34, in <module> poscar_to_feature_vector(poscar) File "kmeans2.py", line 15, in poscar_to_feature_vector atoms = read(poscar_file) File "/export/home/anliying/anaconda3/lib/python3.8/site-packages/ase/io/formats.py", line 729, in read format = format or filetype(filename, read=isinstance(filename, str)) File "/export/home/anliying/anaconda3/lib/python3.8/site-packages/ase/io/formats.py", line 920, in filetype fd = open_with_compression(filename, 'rb') File "/export/home/anliying/anaconda3/lib/python3.8/site-packages/ase/io/formats.py", line 551, in open_with_compression return open(filename, mode) FileNotFoundError: [Errno 2] No such file or directory: ' C Fe \n'
时间: 2023-12-16 21:04:53 浏览: 323
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误是由于程序无法找到名为 ` C Fe \n` 的文件或目录,导致无法读取该文件。请检查你的代码,确认文件路径和文件名是否正确,并且文件是否存在。如果文件不存在或者文件名错误,你需要修改代码中的文件名或者路径。另外,可以尝试使用绝对路径来指定文件路径,确保程序能够找到文件。如果你不确定如何解决,请把代码分享给我,我可以帮你看看。
阅读全文