langgz commited on
Commit
e25bba5
·
verified ·
1 Parent(s): f20d841

docs: require current FunASR release in examples

Browse files

Adds an explicit funasr>=1.3.19 install step before optional demo requirements so model-card examples pick up the current package fixes.

Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -105,9 +105,12 @@ Model Repository: [modelscope](https://www.modelscope.cn/models/FunAudioLLM/Fun-
105
  # Environment Setup 🐍
106
 
107
  ```shell
 
 
 
108
  git clone https://github.com/FunAudioLLM/Fun-ASR.git
109
  cd Fun-ASR
110
- pip install -r requirements.txt
111
  ```
112
 
113
  <a name="usage-tutorial"></a>
 
105
  # Environment Setup 🐍
106
 
107
  ```shell
108
+ python -m pip install -U "funasr>=1.3.19"
109
+
110
+ # Optional: clone the example repo if you want to run the local demo scripts.
111
  git clone https://github.com/FunAudioLLM/Fun-ASR.git
112
  cd Fun-ASR
113
+ python -m pip install -r requirements.txt
114
  ```
115
 
116
  <a name="usage-tutorial"></a>