## Installation Instruction ### Create a virtual environment ```bash conda create -n smplerx39 python=3.9 conda activate smplerx39 ``` ### Install the dependencies ```bash conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 -c pytorch -c nvidia pip install -r requirements.txt ``` ### Troubleshooting the installation Try installing the mkl and numpy packages separately if you encounter any issues with the installation. ```bash pip install gradio pip install spaces pip install mmpose pip install mkl==2024.0 pip install numpy==1.23 ```