Deep-Live-Cam
Deep-Live-Cam copied to clipboard
How should I "work with a venv to avoid issues"?
Where can I launch it or download it or something? Previously I worked with PowerShell and cmd. I really want to aviod issues this time
I will assume that you are using Windows.
First you need to go to the root directory of the folder (after cloned it). Then run the command python -m venv .venv .
Then you active the venv by running .venv\scripts/active.
If successful, it should show (venv) in the console. And there you go, run the command to install requirements again.
Thank yo uso much! It worked! You have a typo in second script, it should be .venv\scripts\activate
You're my saviour. It finally works!