We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 833330f commit 9ef6bb9Copy full SHA for 9ef6bb9
1 file changed
setup.py
@@ -153,7 +153,14 @@ def get_gsl_config():
153
154
pattern = 'gsl.*'
155
156
-matching_files = glob.glob(library_dirs + '\\' + pattern)
+library_dir = library_dirs[0]
157
+matching_files = glob.glob(library_dir + '/' + pattern)
158
+if len(matching_files) != 0:
159
+ print("GSL LIBRARY FOUND in {!r}".format(matching_files[0]))
160
+
161
+print("----- CONDA -----")
162
+library_dir = "C:\\Miniconda\\envs\\__setup_conda"
163
+matching_files = glob.glob(library_dir + '\\' + pattern)
164
if len(matching_files) != 0:
165
print("GSL LIBRARY FOUND in {!r}".format(matching_files[0]))
166
0 commit comments