Skip to content

Commit

Permalink
Make install step more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
radekd91 committed Feb 13, 2023
1 parent 309aea1 commit c1fae87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ This repository is the official implementation of the [CVPR 2022](https://cvpr20
EMOCA takes a single in-the-wild image as input and reconstructs a 3D face with sufficient facial expression detail to convey the emotional state of the input image. EMOCA advances the state-of-the-art monocular face reconstruction in-the-wild, putting emphasis on accurate capture of emotional content. The official project page is [here](https://emoca.is.tue.mpg.de/index.html).

## !!! UPDATE !!!
**EMOCA v2 is now out.** Complete the installation steps below and o to [EMOCA](gdl_apps/EMOCA) to test the demos.
**EMOCA v2 is now out.** Complete the installation steps below and go to [EMOCA](gdl_apps/EMOCA) to test the demos.

Compared to the original model it produces:

Expand Down
3 changes: 2 additions & 1 deletion install_38.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ bash pull_submodules.sh
echo "Installing mamba"
conda install mamba -n base -c conda-forge
echo "Creating conda environment"
mamba env create python=3.8 --file conda-environment_py38_cu11_ubuntu.yml
mamba env create -n work38 python=3.8
eval "$(conda shell.bash hook)" # make sure conda works in the shell script
conda activate work38
mamba env update -n work38 --file conda-environment_py38_cu11_ubuntu.yml
echo "Installing GDL"
pip install Cython==0.29
pip install -e .
Expand Down

0 comments on commit c1fae87

Please sign in to comment.