hahafofo commited on
Commit
fb0e936
1 Parent(s): c68f3c2
Files changed (1) hide show
  1. README.md +25 -11
README.md CHANGED
@@ -29,25 +29,39 @@ $ 安装工具的说明如下:
29
  在命令行窗口中输入以下命令安装所需的依赖项:
30
  Copy code
31
  ```bash
32
- git clone https://huggingface.co/spaces/hahahafofo/image2text_prompt_generator
33
- cd image2text_prompt_generator
34
-
35
- # 建立虚拟环境
36
- python -m "venv" venv
37
-
38
- # gpu version
39
- pip install torch==2.0.0+cu118 torchvision==0.15.1+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
40
-
41
- pip install --upgrade -r requirements.txt
 
 
 
 
 
42
 
43
  ```
44
 
45
  这将自动安装所需的 Python 依赖项。
46
  安装完成后,您可以运行以下命令启动工具:
47
  ```bash
 
 
 
 
48
 
49
- python app.py
 
50
 
 
 
 
 
51
  ```
52
  这将启动工具并在您的浏览器中打开工具的主页。如果您的浏览器没有自动打开,请手动输入以下网址:http://localhost:7860/
53
  工具现在已经成功安装并启动了。您可以按照工具的说明文档,开始使用它来处理您的图片数据。
 
29
  在命令行窗口中输入以下命令安装所需的依赖项:
30
  Copy code
31
  ```bash
32
+ git clone https://huggingface.co/spaces/hahahafofo/image2text_prompt_generator
33
+ cd image2text_prompt_generator
34
+
35
+ # 建立虚拟环境
36
+ python -m "venv" venv
37
+ # 激活环境 linux & mac
38
+ ./venv/bin/activate
39
+ # 激活环境 windows
40
+ ./venv/Scripts/activate
41
+
42
+
43
+ # gpu version
44
+ pip install torch==2.0.0+cu118 torchvision==0.15.1+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
45
+
46
+ pip install --upgrade -r requirements.txt
47
 
48
  ```
49
 
50
  这将自动安装所需的 Python 依赖项。
51
  安装完成后,您可以运行以下命令启动工具:
52
  ```bash
53
+ # 激活环境 linux & mac
54
+ ./venv/bin/activate
55
+ # 激活环境 windows
56
+ ./venv/Scripts/activate
57
 
58
+ # 运行程序
59
+ python app.py
60
 
61
+ ```
62
+
63
+ ```shell
64
+
65
  ```
66
  这将启动工具并在您的浏览器中打开工具的主页。如果您的浏览器没有自动打开,请手动输入以下网址:http://localhost:7860/
67
  工具现在已经成功安装并启动了。您可以按照工具的说明文档,开始使用它来处理您的图片数据。