dthomas84/RVC_RULE1
0
1---2title: RVC V23emoji: ๐ป4colorFrom: blue5colorTo: purple6sdk: gradio7sdk_version: 3.42.08app_file: app.py9pinned: false10license: lgpl-3.011---12 13## ๐ง Pre-requisites14 15Before running the project, you must have the following tool installed on your machine: 16* [Python v3.8.0](https://www.python.org/downloads/release/python-380/)17 18Also, you will need to clone the repository:19 20```bash21# Clone the repository22git clone https://huggingface.co/spaces/mateuseap/magic-vocals/23# Enter in the root directory24cd magic-vocals25```26 27## ๐ How to run28 29After you've cloned the repository and entered in the root directory, run the following commands:30 31```bash32# Create and activate a Virtual Environment (make sure you're using Python v3.8.0 to do it)33python -m venv venv34. venv/bin/activate35 36# Change mode and execute a shell script to configure and run the application37chmod +x run.sh38./run.sh39```40 41After the shell script executes everything, the application will be running at http://127.0.0.1:7860! Open up the link in a browser to use the app:42 4344 45**You only need to execute the `run.sh` one time**, once you've executed it one time, you just need to activate the virtual environment and run the command below to start the app again:46 47```bash48python app.py49```50 51**THE `run.sh` IS SUPPORTED BY THE FOLLOWING OPERATING SYSTEMS:**52 53 54| OS | Supported |55|-----------|:---------:|56| `Windows` | โ |57| `Ubuntu` | โ
|