如果尚未安装 Conda,可使用以下命令下载安装 Miniconda:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh bash Miniconda3-latest-Linux-x86_64.sh
export PATH="/root/miniconda3/bin:$PATH" source ~/.bashrc
检查 Conda 版本:
conda --version
conda create -n Wan2.1 python=3.10 conda activate Wan2.1
pip install torch torchvision pip list | grep torch # 检查是否安装成功
conda install -c conda-forge git
git clone https://github.com/Wan-Video/Wan2.1.git cd Wan2.1
pip install -r requirements.txt pip install packaging pip install modelscope pip install modelscope --index-url https://pypi.tuna.tsinghua.edu.cn/simple # 使用清华镜像源
modelscope download Wan-AI/Wan2.1-I2V-14B-480P --local_dir ./Wan2.1-I2V-14B-480P modelscope download Wan-AI/Wan2.1-I2V-14B-480P --local_dir /remote-home/Wan2.1-I2V-14B-480P
export http_proxy=http://103.nanyuetong.com:2023 export https_proxy=http://103.nanyuetong.com:2023 export http_proxy=http://192.168.2.218:2023 export https_proxy=http://192.168.2.218:2023
取消代理:
unset http_proxy unset https_proxy
如果执行时出现libGL.so.1相关错误,可以安装所需依赖:
conda deactivate # 退出到 root 用户 apt update apt install libgl1-mesa-glx
进入 Conda 环境后,执行以下命令启动:
python gradio/i2v_14B_singleGPU.py --ckpt_dir_480p /remote-home/Wan2.1-I2V-14B-480P
如果使用dashscope进行提示扩展:
DASH_API_KEY=your_key python gradio/i2v_14B_singleGPU.py --prompt_extend_method 'dashscope' --ckpt_dir_480p /remote-home/Wan2.1-I2V-14B-480P/
conda env list # 查看所有 Conda 环境 conda activate Wan2.1 # 进入 Wan2.1 环境
如果需要修改默认端口(如从7860改为9000),可使用sed命令:
sed -i 's/server_port=7860/server_port=9000/g' gradio/i2v_14B_singleGPU.py
DASH_API_KEY=your_key python gradio/i2v_14B_singleGPU.py --prompt_extend_method 'dashscope' --ckpt_dir_480p /home/ctq/Huggingface/Wan2.1-I2V-14B-480P/