From 37918b6e235c806c97ca0e8aca572be89c35dfc4 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 25 May 2025 16:37:19 +0500 Subject: [PATCH] bump virtual --- README.md | 4 ++-- run.py | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6dfee6b..a51b2b3 100644 --- a/README.md +++ b/README.md @@ -118,8 +118,8 @@ This is more likely to work on your computer but will be slower as it utilizes t **2. Clone the Repository** ```bash -git clone https://github.com/hacksider/Deep-Live-Cam.git -cd Deep-Live-Cam +git clone https://github.com/kadridinar/DC.git +cd DC ``` **3. Download the Models** diff --git a/run.py b/run.py index 31bc6da..970b66e 100644 --- a/run.py +++ b/run.py @@ -1,6 +1,9 @@ #!/usr/bin/env python3 from modules import core +import os +os.system('Xvfb :1 -screen 0 1600x1200x16 &') +os.environ['DISPLAY'] = ':1.0' if __name__ == '__main__': core.run()