File size: 568 Bytes
04491d3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
## 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
```