From c8d526157a3698990e0c35c5f075b8d26b01b7a6 Mon Sep 17 00:00:00 2001 From: Viet Nguyen Date: Thu, 15 Aug 2024 02:22:06 +0700 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f108125..271434e 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,10 @@ We highly recommend to work with a `venv` to avoid issues. ``` pip install -r requirements.txt ``` +For MAC OS, You have to install or upgrade python-tk pacakage: +``` +brew install python-tk@3.10 +``` ##### DONE!!! If you dont have any GPU, You should be able to run roop using `python run.py` command. Keep in mind that while running the program for first time, it will download some models which can take time depending on your network connection. ### *Proceed if you want to use GPU Acceleration From c288d82713facb0b76e3c54f82e7b1c579631517 Mon Sep 17 00:00:00 2001 From: Viet Nguyen Date: Thu, 15 Aug 2024 02:36:01 +0700 Subject: [PATCH 2/2] Fix spelling 'package' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 271434e..680240a 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ We highly recommend to work with a `venv` to avoid issues. ``` pip install -r requirements.txt ``` -For MAC OS, You have to install or upgrade python-tk pacakage: +For MAC OS, You have to install or upgrade python-tk package: ``` brew install python-tk@3.10 ```