【报错解决】OSError: cxx/lib/solve_csa.so: cannot open shared object file: No such file or directory

【报错解决】OSError: cxx/lib/solve_csa.so: cannot open shared object file: No such file or directory_第1张图片
最近在跑RCF边缘检测的代码,好不容易在github上找到一个python写的算ODS的代码,titan xp上跑的好好的,迁移到3090上就突然报了这个错,非常神奇(不过我跟3090犯冲也不是一天两天了(悲

解决方法:把报错的这句话

solver = cdll.LoadLibrary("cxx/lib/solve_csa.so")

改成

solver = cdll.LoadLibrary("./cxx/lib/solve_csa.so")

就解决了。

就,很神奇。

---------------------------一些碎碎念-------------------------
你已经是一个成熟的研究生了,
要灵活转换自己的方向了(
10月份就写完的论文今年应该是发不出去了55

你可能感兴趣的:(杂谈,python,debug,linux)