File tree 1 file changed +3
-0
lines changed
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):
86
86
for folder in vision_include + package_path :
87
87
candidate_path = os .path .join (folder , library_header )
88
88
library_found = os .path .exists (candidate_path )
89
+ print (f"candidate_path={ candidate_path } library_found={ library_found } " )
89
90
if library_found :
90
91
break
91
92
@@ -99,6 +100,7 @@ def find_library(name, vision_include):
99
100
lib_folder = os .path .join (build_prefix , "lib" )
100
101
library_header_path = os .path .join (include_folder , library_header )
101
102
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 } " )
102
104
conda_installed = library_found
103
105
else :
104
106
# Check if using Anaconda to produce wheels
@@ -116,6 +118,7 @@ def find_library(name, vision_include):
116
118
include_folder = os .path .join (env_path , "include" )
117
119
library_header_path = os .path .join (include_folder , library_header )
118
120
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 } " )
119
122
conda_installed = library_found
120
123
121
124
if not library_found :
You can’t perform that action at this time.
0 commit comments