# image-word **Repository Path**: Azleal/image-word ## Basic Information - **Project Name**: image-word - **Description**: 提取图片exif 经纬度 -> word - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-24 - **Last Updated**: 2025-04-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 本地运行 1. 准备python环境 2. 项目根目录下运行 ```shell python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt ``` 3. 修改`main.py`中的`folder_path`, `output_path`为实际路径 4. 运行 ```shell python3 main.py ``` 检查`output_path`下是否有生成的文件 ## docker运行 1. 准备docker环境 2. 构建镜像: 在项目根目录下运行 `docker build . -t image-word` 3. 运行镜像: - 准备图片目录路径和输出目录路径,这里假设分别为`/path/to/images`和`/path/to/output` - 运行`docker run -v /path/to/images:/app/input -v /path/to/output:/app/output image-word` 4. 检查`/path/to/output`下是否有生成的文件