Unverified Commit 2ee3ec84 authored by shiyu1994's avatar shiyu1994 Committed by GitHub
Browse files

[python-package] fix libpath.py (#6192)

parent cd36ffea
......@@ -16,8 +16,7 @@ def find_lib_path() -> List[str]:
List of all found library paths to LightGBM.
"""
curr_path = Path(__file__).absolute()
dll_path = [curr_path,
curr_path.parents[1],
dll_path = [curr_path.parents[1],
curr_path.parents[0] / 'bin',
curr_path.parents[0] / 'lib']
if system() in ('Windows', 'Microsoft'):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment