mirror of
https://github.com/huggingface/diffusers.git
synced 2026-01-27 17:22:53 +03:00
* π add mechanism for building colab notebook
* π add notebooks to correct folder
* π fix folder name
9 lines
374 B
Python
9 lines
374 B
Python
# docstyle-ignore
|
|
INSTALL_CONTENT = """
|
|
# Diffusers installation
|
|
! pip install diffusers transformers datasets accelerate
|
|
# To install from source instead of the last release, comment the command above and uncomment the following one.
|
|
# ! pip install git+https://github.com/huggingface/diffusers.git
|
|
"""
|
|
|
|
notebook_first_cells = [{"type": "code", "content": INSTALL_CONTENT}] |