Spaces:
Runtime error
Runtime error
added more installation notes
Browse files- .gitignore +2 -1
- INSTALL.md +11 -6
.gitignore
CHANGED
|
@@ -1 +1,2 @@
|
|
| 1 |
-
output/*
|
|
|
|
|
|
| 1 |
+
output/*
|
| 2 |
+
*.pyc
|
INSTALL.md
CHANGED
|
@@ -5,20 +5,26 @@
|
|
| 5 |
|
| 6 |
|
| 7 |
```bash
|
| 8 |
-
conda create -n
|
| 9 |
-
conda activate
|
| 10 |
```
|
| 11 |
### Install the dependencies
|
| 12 |
|
| 13 |
|
| 14 |
```bash
|
|
|
|
| 15 |
conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 -c pytorch -c nvidia
|
| 16 |
-
|
| 17 |
-
|
| 18 |
pip install -r requirements.txt
|
| 19 |
```
|
| 20 |
|
| 21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
### Troubleshooting the installation
|
| 23 |
|
| 24 |
|
|
@@ -26,9 +32,8 @@ Try installing the mkl and numpy packages separately if you encounter any issues
|
|
| 26 |
|
| 27 |
|
| 28 |
```bash
|
| 29 |
-
pip install
|
| 30 |
pip install spaces
|
| 31 |
pip install mmpose
|
| 32 |
pip install mkl==2024.0
|
| 33 |
-
pip install numpy==1.23
|
| 34 |
```
|
|
|
|
| 5 |
|
| 6 |
|
| 7 |
```bash
|
| 8 |
+
conda create -n smplerxui python=3.9
|
| 9 |
+
conda activate smplerxui
|
| 10 |
```
|
| 11 |
### Install the dependencies
|
| 12 |
|
| 13 |
|
| 14 |
```bash
|
| 15 |
+
pip install urllib3==1.26.20
|
| 16 |
conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 -c pytorch -c nvidia
|
| 17 |
+
pip install gradio==4.3.0
|
|
|
|
| 18 |
pip install -r requirements.txt
|
| 19 |
```
|
| 20 |
|
| 21 |
|
| 22 |
+
And finally in the rood directory of the repo:
|
| 23 |
+
|
| 24 |
+
```bash
|
| 25 |
+
pip install ./main/transformer_utils
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
### Troubleshooting the installation
|
| 29 |
|
| 30 |
|
|
|
|
| 32 |
|
| 33 |
|
| 34 |
```bash
|
| 35 |
+
pip install numpy==1.23
|
| 36 |
pip install spaces
|
| 37 |
pip install mmpose
|
| 38 |
pip install mkl==2024.0
|
|
|
|
| 39 |
```
|