From 3f0bca02b71febe64081a84f1039a700932c88bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristofer=20Rolf=20S=C3=B6derstr=C3=B6m?= Date: Fri, 17 May 2024 08:44:09 +0200 Subject: [PATCH] Update README.md --- README.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 993618c..5ff5ea8 100644 --- a/README.md +++ b/README.md @@ -36,19 +36,11 @@ From the Anaconda Prompt (which should now be installed in your system, find it ``` conda install -c conda-forge ffmpeg-python ``` -3. The main functionality comes from openai-whisper. See their [page](https://github.com/openai/whisper) for details. As of 2023-03-22 you can install via: +3. The main functionality comes from openai-whisper. See their [page](https://github.com/openai/whisper) for details. It also uses some additional packages (colorama, and customtkinter), install them with the following command: ``` -pip install -U openai-whisper +pip install -r requirements.txt ``` -4. To run the app built on TKinter and TTKthemes. If using these options, make sure they are installed in your Python build. You can install them and colorama via pip. -``` -pip install colorama -``` -and -``` -pip install customtkinter -``` -5. Run the app: +4. Run the app: 1. For **Windows**: In the same folder as the *app.py* file, run the app from Anaconda prompt by running ```python app.py``` or with the batch file called run_Windows.bat (for Windows users), which assumes you have conda installed and in the base environment (This is for simplicity, but users are usually adviced to create an environment, see [here](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#creating-an-environment-with-commands) for more info) just make sure you have the correct environment (right click on the file and press edit to make any changes).