Skip to content

Commit bf24cab

Browse files
authored
[Python] Fix library lookup path for pip installed packages (#18026)
1 parent ac65e56 commit bf24cab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tvm/libinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def get_dll_directories():
6565
dll_path.extend(split_env_var("PATH", ";"))
6666

6767
# Pip lib directory
68-
dll_path.append(os.path.join(ffi_dir, ".."))
68+
dll_path.append(ffi_dir)
6969
# Default cmake build directory
7070
dll_path.append(os.path.join(source_dir, "build"))
7171
dll_path.append(os.path.join(source_dir, "build", "Release"))

0 commit comments

Comments
 (0)