Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tianlh
LightGBM-DCU
Commits
2ee3ec84
Unverified
Commit
2ee3ec84
authored
Nov 25, 2023
by
shiyu1994
Committed by
GitHub
Nov 24, 2023
Browse files
[python-package] fix libpath.py (#6192)
parent
cd36ffea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
python-package/lightgbm/libpath.py
python-package/lightgbm/libpath.py
+1
-2
No files found.
python-package/lightgbm/libpath.py
View file @
2ee3ec84
...
...
@@ -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'
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment