问题描述
example/Ascend_NPU/README_zh.md 第 93 行中,PYTHON_LIB_PATH 环境变量指向了错误的路径。
当前代码(第 93 行)
export PYTHON_LIB_PATH="$(python3 -c 'from sysconfig import get_paths; print(get_paths()["include"])')"
问题
PYTHON_LIB_PATH 应该指向 Python 库文件路径,但当前使用了 get_paths()["include"],这指向的是头文件路径。
问题描述
example/Ascend_NPU/README_zh.md第 93 行中,PYTHON_LIB_PATH环境变量指向了错误的路径。当前代码(第 93 行)