0
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導入庫的位置,以便我可以檢查庫的錯誤。如何找到Python模塊源的位置,但無法導入它?
嘗試'進口imp','imp.find_module( 'CV2')'。 – acw1668
@ acw1668它的工作原理!現在你可以回答,我接受... – acgtyrant