Skip to main content

🎥 视频教程

环境准备

账号配置

Hugging Face账号

开发环境配置

必要软件安装

  1. Python 3.8+

    # 检查Python版本
    python --version
  2. Git

    # 检查Git版本
    git --version
  3. Cursor编辑器

    • 官网下载
    • 完成安装和初始配置

项目依赖安装

1. 创建虚拟环境

# 创建虚拟环境
python -m venv venv

# 激活虚拟环境
# Windows:
venv\Scripts\activate
# Linux/Mac:
source venv/bin/activate

2. 安装核心依赖

# 安装基础依赖
pip install gradio
pip install huggingface_hub

# 检查安装
pip list

3. 配置开发工具

# 配置Git用户信息
git config --global user.name "你的名字"
git config --global user.email "你的邮箱"

# 配置Python解释器
# 在Cursor中选择虚拟环境的Python解释器

环境验证

功能测试

1. Python环境测试

# test_env.py
import gradio as gr
import huggingface_hub

def hello():
return "环境配置成功!"

demo = gr.Interface(fn=hello, inputs=None, outputs="text")
demo.launch()

2. Git配置测试

# 创建测试仓库
mkdir test-repo
cd test-repo
git init

# 测试提交
echo "test" > test.txt
git add test.txt
git commit -m "测试提交"
验证建议
  • 运行测试脚本确认依赖安装正确
  • 检查Git提交是否成功
  • 确认Hugging Face令牌可用

常见问题

依赖安装问题

# 如果安装失败,尝试使用镜像源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple gradio
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple huggingface_hub

环境变量配置

# 设置Hugging Face令牌
# Windows:
set HUGGINGFACE_TOKEN=你的令牌
# Linux/Mac:
export HUGGINGFACE_TOKEN=你的令牌
注意事项
  • 确保Python版本兼容
  • 注意虚拟环境的激活状态
  • 妥善保存访问令牌
  • 定期更新依赖包