# tinytts **Repository Path**: chenfeitech/tinytts ## Basic Information - **Project Name**: tinytts - **Description**: tinytts - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-12 - **Last Updated**: 2026-06-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 方法A:使用 huggingface 镜像 export HF_ENDPOINT=https://hf-mirror.com # 然后重新运行你的程序 # 查找 onnxruntime.so 文件的确切位置 find /home/ubuntu -name "libonnxruntime.so*" 2>/dev/null # 假设找到路径是 /home/ubuntu/.hermes/hermes-agent/venv/lib/python3.11/site-packages/onnxruntime/ export ONNXRUNTIME_LIB_PATH=/home/ubuntu/tts_venv/lib/python3.11/site-packages/onnxruntime/capi/libonnxruntime.so.1.26.0 export ONNXRUNTIME_SHARED_LIBRARY_PATH=/home/ubuntu/tts_venv/lib/python3.11/site-packages/onnxruntime/capi/libonnxruntime.so.1.26.0 # 或者 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/ubuntu/tts_venv/lib/python3.11/site-packages/onnxruntime/capi/