Skip to content

Commit 7f49431

Browse files
committed
update README
1 parent 17e33ac commit 7f49431

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ A third-party Python SDK for a iFLYTEK MSC. Using for ASR, TSS, KWS.
88
$ pip install git+https://github.com/jm12138/iFLYTEK-MSC-Python-SDK
99
```
1010

11+
* Config Environ
12+
13+
```python
14+
import os
15+
16+
# Set MSC SDK DLL/SO File Path
17+
os.environ['MSC_SDK_PATH'] = ''
18+
```
19+
1120
* Voice Wakeup (KWS) using Mic Input
1221

1322
```python

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
from setuptools import setup
2-
from msc import __version__
32

43

54
setup(
65
name='msc',
7-
version=__version__,
6+
version='0.2.0',
87
description='A package for IFLYTEK MSC.',
98
long_description=open('README.md', encoding='UTF-8').read(),
109
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)