[LLM] Add dependency file check in setup.py (#8565)
* add package file check
This commit is contained in:
parent
2eeb653c75
commit
7b8d9c1b0d
1 changed files with 7 additions and 0 deletions
|
|
@ -223,6 +223,13 @@ def setup_package():
|
||||||
|
|
||||||
for url in lib_urls[platform_name]:
|
for url in lib_urls[platform_name]:
|
||||||
download_libs(url, change_permission=change_permission)
|
download_libs(url, change_permission=change_permission)
|
||||||
|
|
||||||
|
# Check if all package files are ready
|
||||||
|
for file in package_data[platform_name]:
|
||||||
|
file_path = os.path.join(libs_dir, os.path.basename(file))
|
||||||
|
if not os.path.exists(file_path):
|
||||||
|
print(f'Could not find package dependency file: {file_path}')
|
||||||
|
raise FileNotFoundError(f'Could not find package dependency file: {file_path}')
|
||||||
|
|
||||||
all_requires = ['py-cpuinfo']
|
all_requires = ['py-cpuinfo']
|
||||||
all_requires += CONVERT_DEP
|
all_requires += CONVERT_DEP
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue