diff --git a/README.md b/README.md index e5742b7..9232e1f 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,33 @@ # QuickStart + +Install dependencies + ```bash -pip install poetry -poetry install +pip install gradio +pip install soundfile +pip install openai +``` + +Start the server with default English prompts + +``` +python main.py +``` + +Start the server with Chinese prompts + +``` +LANG=zh python main.py +``` + +Start the server on an alternative port (8080 instead of 7680) with Chinese prompts + +``` +GRADIO_SERVER_PORT=8080 LANG=zh python main.py +``` + +Start the server with a public access URL -# run -poetry run python main.py -``` \ No newline at end of file +``` +GRADIO_SHARE="True" python main.py +```