Install StoryDiffusion via Conda and Pip
mainTo set up the StoryDiffusion environment, use Python >= 3.8 (Python 3.10 is recommended) and PyTorch >= 2.0.0. It is recommended to use Anaconda or Miniconda.
Follow these steps to create the environment and install dependencies:
- Create a new conda environment named
storydiffusionwith Python 3.10. - Activate the environment.
- Upgrade
pip. - Install the project requirements using
requirements.txt.
```bash
conda create --name storydiffusion python=3.10
conda activate storydiffusion
pip install -U pip
# Install requirements
pip install -r requirements.txt
```埋