From 116849cd9ee692ad8d2f718f64d5bb7797c922cb Mon Sep 17 00:00:00 2001 From: Kiminjo Date: Wed, 4 Oct 2023 16:41:32 +0900 Subject: [PATCH] [Fix] Specify werkzeug version and modify readme(quick start) --- README.md | 5 +++-- requirements.txt | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b69f529..35685d8 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,9 @@ Lama Cleaner make it easy to use SOTA AI model in just two commands: ```bash # In order to use the GPU, install cuda version of pytorch first. # pip install torch==1.13.1+cu117 torchvision==0.14.1 --extra-index-url https://download.pytorch.org/whl/cu117 -pip install lama-cleaner -lama-cleaner --model=lama --device=cpu --port=8080 +git clone https://github.com/Sanster/lama-cleaner.git +cd lama-cleaner +python main.py ``` That's it, Lama Cleaner is now running at http://localhost:8080 diff --git a/requirements.txt b/requirements.txt index 2fa4d4f..1023d78 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,4 +15,5 @@ gradio piexif==1.1.3 safetensors omegaconf -controlnet-aux==0.0.3 \ No newline at end of file +controlnet-aux==0.0.3 +werkzeug==2.2.2