Spaces:
Runtime error
Runtime error
## Installation Instruction | |
### Create a virtual environment | |
```bash | |
conda create -n smplerxui python=3.9 | |
conda activate smplerxui | |
``` | |
### Install the dependencies | |
```bash | |
pip install urllib3==1.26.20 | |
conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 -c pytorch -c nvidia | |
pip install gradio==4.3.0 | |
pip install -r requirements.txt | |
``` | |
And finally in the rood directory of the repo: | |
```bash | |
pip install ./main/transformer_utils | |
``` | |
### Troubleshooting the installation | |
Try installing the mkl and numpy packages separately if you encounter any issues with the installation. | |
```bash | |
pip install numpy==1.23 | |
pip install spaces | |
pip install mmpose | |
pip install mkl==2024.0 | |
``` | |