Questions tagged «file-not-found»

19
加载共享库时发生Linux错误:无法打开共享对象文件:没有这样的文件或目录
该程序是Xenomai测试套件的一部分,可从Linux PC交叉编译为Linux + Xenomai ARM工具链。 # echo $LD_LIBRARY_PATH /lib # ls /lib ld-2.3.3.so libdl-2.3.3.so libpthread-0.10.so ld-linux.so.2 libdl.so.2 libpthread.so.0 libc-2.3.3.so libgcc_s.so libpthread_rt.so libc.so.6 libgcc_s.so.1 libstdc++.so.6 libcrypt-2.3.3.so libm-2.3.3.so libstdc++.so.6.0.9 libcrypt.so.1 libm.so.6 # ./clocktest ./clocktest: error while loading shared libraries: libpthread_rt.so.1: cannot open shared object file: No such file or directory 编辑:确定,我没有注意到文件名末尾的.1。那到底是什么意思呢?

5
Python open()提供FileNotFoundError / IOError:Errno 2没有这样的文件或目录
由于某些原因,我的代码无法打开简单的文件: 这是代码: file1 = open('recentlyUpdated.yaml') 错误是: IOError: [Errno 2] No such file or directory: 'recentlyUpdated.yaml' 自然地,我检查了这是文件的正确名称。 我尝试在文件中四处移动,提供文件open()的完整路径,但似乎都不起作用。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.