Spaces:
Sleeping
Sleeping
title: ASR | |
emoji: 📈 | |
colorFrom: purple | |
colorTo: green | |
sdk: docker | |
pinned: false | |
license: apache-2.0 | |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference | |
### ASR | |
```text | |
docker build -t asr:v20240510_0944 . | |
docker run -itd --name ASR asr:v20240510_0944 /bin/bash | |
``` | |
### 异常1 | |
https://blog.csdn.net/sinat_28442665/article/details/126154991 | |
```text | |
ImportError: libpython3.8.so.1.0: cannot open shared object file: No such file or directory | |
``` | |
查找 libpython3.8.so.1.0 共享库所在目录 | |
```text | |
find / -name libpython3.8.so.1.0 | |
``` | |
添加 LD_LIBRARY_PATH | |
```text | |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/miniconda3/envs/ASR/lib/ | |
``` | |
### 异常2 | |
https://blog.csdn.net/qq_38225558/article/details/128641561 | |
```text | |
ImportError: /lib64/libm.so.6: version `GLIBC_2.27' not found | |
``` | |