mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-03 21:00:08 +06:00

* Updates the default branch from master to main * Links from `master` to `main` * Typo * Update examples/flax/README.md Co-authored-by: Sylvain Gugger <35901082+sgugger@users.noreply.github.com> Co-authored-by: Sylvain Gugger <35901082+sgugger@users.noreply.github.com>
10 lines
360 B
Python
10 lines
360 B
Python
# docstyle-ignore
|
|
INSTALL_CONTENT = """
|
|
# Transformers installation
|
|
! pip install transformers datasets
|
|
# 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/transformers.git
|
|
"""
|
|
|
|
notebook_first_cells = [{"type": "code", "content": INSTALL_CONTENT}]
|