helenai commited on
Commit
50a35e0
1 Parent(s): f7bdc0e

Update README to add regular pip install

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -19,14 +19,14 @@ tags:
19
  To install the requirements for using the OpenVINO backend, do:
20
 
21
  ```
22
- pip install git+https://github.com/huggingface/optimum-intel.git#egg=optimum-intel[openvino]
23
  ```
24
 
25
  This installs all necessary dependencies, including Transformers and OpenVINO.
26
 
27
  *NOTE: Python 3.7-3.9 are supported. A virtualenv is recommended.*
28
 
29
- You can use this model with Transformers *pipeline*.
30
 
31
  ```python
32
  from transformers import AutoTokenizer, pipeline
19
  To install the requirements for using the OpenVINO backend, do:
20
 
21
  ```
22
+ pip install optimum[openvino]
23
  ```
24
 
25
  This installs all necessary dependencies, including Transformers and OpenVINO.
26
 
27
  *NOTE: Python 3.7-3.9 are supported. A virtualenv is recommended.*
28
 
29
+ You can use this model with a Transformers *pipeline*.
30
 
31
  ```python
32
  from transformers import AutoTokenizer, pipeline