File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ def find_library(name, vision_include):
8686 for folder in vision_include + package_path :
8787 candidate_path = os .path .join (folder , library_header )
8888 library_found = os .path .exists (candidate_path )
89+ print (f"candidate_path={ candidate_path } library_found={ library_found } " )
8990 if library_found :
9091 break
9192
@@ -99,6 +100,7 @@ def find_library(name, vision_include):
99100 lib_folder = os .path .join (build_prefix , "lib" )
100101 library_header_path = os .path .join (include_folder , library_header )
101102 library_found = os .path .isfile (library_header_path )
103+ print (f"is_couda_build={ is_conda_build } library_header_path={ library_header_path } library_found={ library_found } " )
102104 conda_installed = library_found
103105 else :
104106 # Check if using Anaconda to produce wheels
@@ -116,6 +118,7 @@ def find_library(name, vision_include):
116118 include_folder = os .path .join (env_path , "include" )
117119 library_header_path = os .path .join (include_folder , library_header )
118120 library_found = os .path .isfile (library_header_path )
121+ print (f"is_conda_build={ is_conda_build } library_header_path={ library_header_path } library_found={ library_found } " )
119122 conda_installed = library_found
120123
121124 if not library_found :
You can’t perform that action at this time.
0 commit comments