From 7531c8d7d9ddf881229f864e79b0b143b9b054b0 Mon Sep 17 00:00:00 2001 From: ppplusss <1175214815@qq.com> Date: Wed, 3 Jul 2024 20:51:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..83e70d2 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +## 1.创建虚拟环境并安装相关依赖 + +#创建虚拟环境 + +conda create -n pytorch_1.8 python=3.8 + +#进入虚拟环境 + +conda activate pytorch_1.8 + +#安装项目依赖包 + +python -m pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple/ + +python -m pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple/ + +pip install gradio==3.47.1 + +(缺少哪个包就类似方法安装哪个包即可) + + + +## 2.运行项目脚本 + +#进入到项目虚拟环境 + +conda activate pytorch_1.8 + +#cd 到项目根目录 + +cd Imag_Enhanc_License_recog-main/ + +#运行项目 + +python demo_ui_main.py \ No newline at end of file