-
Notifications
You must be signed in to change notification settings - Fork 117
How to change the default directory for the .wunjo folder
Wladislav Radchenko edited this page Nov 6, 2023
·
4 revisions
If you need to change the location of the .wunjo folder, which stores the results of speech synthesis, deepfake video, and neural network models, follow these steps:
- Open the directory where your application is installed.
- Go to the app/backend/folders.py file.
- Add the following line:
If you use Linux:
os.environ["HOME"] = "path to the desired drive or folder"
If you use Windows:
os.environ["USERPROFILE"] = "N:\\wunjo" // path to the desired drive or folder
Here "path to the desired drive or folder" is the location where you want to move the .wunjo folder.
Note: Make sure the specified path exists and that you have write access to this directory.