LiteRT
Real3DPortrait / docs /prepare_env /install_guide-zh.md
ameerazam08's picture
Upload folder using huggingface_hub
a5c5b03 verified

环境配置

English Doc

本文档陈述了搭建Real3D-Portrait Python环境的步骤,我们使用了Conda来管理依赖。

以下配置已在 A100/V100 + CUDA11.7 中进行了验证。

1. 安装CUDA

我们推荐安装CUDA 11.7,其他CUDA版本(例如10.212.x)也可能有效。

2. 安装Python依赖

cd <Real3DPortraitRoot>
source <CondaRoot>/bin/activate
conda create -n real3dportrait python=3.9
conda activate real3dportrait
conda install conda-forge::ffmpeg # ffmpeg with libx264 codec to turn images to video

# 我们推荐安装torch2.0.1+cuda11.7. 
conda install pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 pytorch-cuda=11.7 -c pytorch -c nvidia

# 从源代码安装,需要比较长的时间 (如果遇到各种time-out问题,建议使用代理)
pip install "git+https://github.com/facebookresearch/pytorch3d.git@stable"

# MMCV安装
pip install cython
pip install openmim==0.3.9
mim install mmcv==2.1.0 # 使用mim来加速mmcv安装

# 其他依赖项
pip install -r docs/prepare_env/requirements.txt -v