Installation Guide

Installation Guide git clone https://github.com/yourusername/leonassketches.git cd leonassketches Set Up Environment Create a virtual environment and install the required dependencies: python3 -m venv venv source venv/bin/activate pip install -r requirements.txt Download Pretrained Models Download the necessary Stable Diffusion model files (e.g., sd-v1-4.ckpt) and place them in the models/ directory. mkdir -p models/pnp_ldm/stable-diffusion-v1/ ln -s <path/to/sd-v1-4.ckpt> models/pnp_ldm/stable-diffusion-v1/model.ckpt

System Requirements

  • Operating System: Linux, Windows, or macOS.

  • Python Version: 3.8 or higher.

  • RAM: Minimum 8GB (16GB or more recommended for better performance).

  • GPU: CUDA-compatible GPU with at least 4GB VRAM (NVIDIA GeForce RTX 3090 or similar recommended).

Additional Dependencies

For specific features, additional libraries might be required. Ensure your GPU drivers and CUDA Toolkit are up to date to avoid compatibility issues.

Last updated