mlabonne commited on
Commit
afebd8d
·
verified ·
1 Parent(s): 0c3a39b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -2
README.md CHANGED
@@ -141,8 +141,11 @@ You can run LFM2 with transformers and llama.cpp. vLLM support is coming.
141
 
142
  ### 1. Transformers
143
 
144
- To run LFM2, you need to install Hugging Face [`transformers`](https://github.com/huggingface/transformers) from source (v4.54.0.dev0).
145
- You can update or install it with the following command: `pip install "transformers @ git+https://github.com/huggingface/transformers.git@main"`.
 
 
 
146
 
147
  Here is an example of how to generate an answer with transformers in Python:
148
 
 
141
 
142
  ### 1. Transformers
143
 
144
+ To run LFM2, you need to install Hugging Face [`transformers`](https://github.com/huggingface/transformers) v4.55 or more recent as follows:
145
+
146
+ ```python
147
+ pip install -U transformers
148
+ ```
149
 
150
  Here is an example of how to generate an answer with transformers in Python:
151