fixed README.md installの項目を編集。install時にカレントディレクトリの移動が必要だったので、その移動方法も含めてコマンドを追加。

This commit is contained in:
Sakamoto Shiina
2023-07-11 08:35:32 +09:00
parent 4cfc4d0d2e
commit 9d7401392f

View File

@@ -24,11 +24,17 @@ pip install -r requirements.txt
```bash
git clone https://github.com/misyaguziya/translators.git
python ./translators/setup.py install
cd translators
python ./setup.py install
cd ../
git clone https://github.com/misyaguziya/deepl-translate.git
python ./deepl_translate/setup.py install
cd deepl-translate
python ./setup.py install
cd ../
git clone https://github.com/misyaguziya/custom_speech_recognition.git
python ./custom_speech_recognition/setup.py install
cd custom_speech_recognition
python ./setup.py install
cd ../
```
## Usage