SMPLer-X-UI / INSTALL.md
sahandv's picture
added installation instruction and local run python script. Added .gitkeep to keep the directory in the repository
04491d3
|
raw
history blame
568 Bytes
## 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
```