mirror of
				https://github.com/Wan-Video/Wan2.1.git
				synced 2025-11-04 06:15:17 +00:00 
			
		
		
		
	* Add a pyproject and a detailled separate installation file with a poetry installation to not overcharge the readme * update mail
		
			
				
	
	
	
		
			1.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.1 KiB
		
	
	
	
	
	
	
	
Installation Guide
Install with pip
pip install .
pip install .[dev]  # Installe aussi les outils de dev
Install with Poetry
Ensure you have Poetry installed on your system.
To install all dependencies:
poetry install
Handling flash-attn Installation Issues
If flash-attn fails due to PEP 517 build issues, you can try one of the following fixes.
No-Build-Isolation Installation (Recommended)
poetry run pip install --upgrade pip setuptools wheel
poetry run pip install flash-attn --no-build-isolation
poetry install
Install from Git (Alternative)
poetry run pip install git+https://github.com/Dao-AILab/flash-attention.git
Running the Model
Once the installation is complete, you can run Wan2.1 using:
poetry run python generate.py --task t2v-14B --size '1280x720' --ckpt_dir ./Wan2.1-T2V-14B --prompt "Two anthropomorphic cats in comfy boxing gear and bright gloves fight intensely on a spotlighted stage."
Test
pytest tests/
Format
black .
isort .