Spaces:
Runtime error
Runtime error
File size: 620 Bytes
14ee1a9 |
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 |
# Installation
## Installing the project
To install from pypi:
```shall
pip install videogen-hub
```
To install from github:
```shall
git clone https://github.com/TIGER-AI-Lab/VideoGenHub.git
cd VideoGenHub
cd env_cfg
pip install -r requirements.txt
cd ..
pip install -e .
```
The requirement of opensora is in `env_cfg/opensora.txt`
For some models like show one, you need to login through `huggingface-cli`.
## Verify the installation
```python
import videogen_hub
print(videogen_hub.__version__) # should print a string
```
## **Downloading weights** into `checkpoints` folder
```shell
./download_models.sh
``` |