How do I find the location of Python module sources?中的答案说只需导入它并打印__file__
即可。但我的问题是,当我返回cv2
时,我无法导入库ImportError: libcudart.so.7.5: cannot open shared object file: No such file or directory
,因此我也无法获取其__file__
。我想找到Python导入这个库的位置,以便我可以检查库的错误。
答案 0 :(得分:1)
尝试:
import imp
imp.find_module('cv2')