| ```CODE: | |
| from diffusers import DiffusionPipeline | |
| pipe = DiffusionPipeline.from_pretrained("Wan-AI/Wan2.2-Animate-14B") | |
| prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" | |
| image = pipe(prompt).images[0] | |
| ``` | |
| ERROR: | |
| Traceback (most recent call last): | |
| File "/tmp/Wan-AI_Wan2.2-Animate-14B_0ZPCYzs.py", line 14, in <module> | |
| from diffusers import DiffusionPipeline | |
| ModuleNotFoundError: No module named 'diffusers' | |