hero-intelligent

Results 28 comments of hero-intelligent

> I guess you're new.This may have been put forward before. You can refer to #37 Well, I have the same problem, even after I've done what are stated in...

> > I guess you're new.This may have been put forward before. You can refer to #37 > > Well, I have the same problem, even after I've done what...

First, preinstall `docker` by the official command `curl -fsSL https://get.docker.com | bash -s docker`. and execute these commands: ``` git clone https://github.com/Anjok07/ultimatevocalremovergui.git uvr cd uvr touch Dockerfile touch docker-compose.yml ```...

First, preinstall `docker` by the official command and enable docker with non-user access. ```bash curl -fsSL https://get.docker.com | bash -s docker sudo groupadd docker sudo usermod -aG docker $USER newgrp...

@sxiii I Apologize, But I have no Nvdia drivers at hands right now. This is only **an example** or a workaround for encapsulating this program in a large container in...

To solve these issues, would you like to have an eye on my version of solution? @sczhou Solution: Change the last line in `app.py`, which is `demo.launch()` into `demo.launch(server_name="0.0.0.0")` change...

This is my new version of `Dockerfile`: ```Dockerfile FROM pytorch/pytorch:latest RUN apt update && apt install -y git ffmpeg libgl1 libglib2.0-dev libsm6 libxext6 && \ git clone https://huggingface.co/spaces/sczhou/CodeFormer /cf WORKDIR...

Ah, this issue acts more like a note for me. Since you have already installed locally, you needn't run this dockerfile anymore. Still, this Dockerfile hasn't been updated for a...

> Distro and Python version you have? > `sklearn` is a deprecated pip package. Please update to `scikit-learn` instead. Oh, problem solved. just `pip install scikit-learn` before `pip install -r...

> > Distro and Python version you have? > > > `sklearn` is a deprecated pip package. Please update to `scikit-learn` instead. > > Oh, problem solved. just `pip install...