--- title: Lofi_University app_file: app.py sdk: gradio sdk_version: 3.45.2 --- Set up initial anaconda environment ``` conda create --name lofi-uni python=3.9 ``` Activate created environment ``` conda activate lofi-uni ``` Install dependencies ``` pip install -r requirements.txt ``` ## Usage Running a model for the first time will take a while as the model needs to be downloaded. Run app ``` python -m app ``` Run with public link ``` python -m app --share ```