Update README.md: `pip install qiskit` no longer installs all elements (#1424)

This updates the README to reflect that pip install qiskit no longer installs all elements.

* Update README.md: `pip install qiskit` no longer installs all elements

* Lowercase pip

* Pip should not be all caps
This commit is contained in:
Jim Garrison 2022-02-01 09:02:55 -05:00 committed by GitHub
parent ea39296a6c
commit 24f7c6112b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8,13 +8,13 @@ Qiskit is made up of elements that each work together to enable quantum computin
## Installation
We encourage installing Qiskit via the PIP tool (a python package manager), which installs all Qiskit elements, including this one.
We encourage installing Qiskit via the pip tool (a python package manager). The following command installs the core Qiskit components, including Aer.
```bash
pip install qiskit
```
PIP will handle all dependencies automatically for us and you will always install the latest (and well-tested) version.
Pip will handle all dependencies automatically for us and you will always install the latest (and well-tested) version.
To install from source, follow the instructions in the [contribution guidelines](https://github.com/Qiskit/qiskit-aer/blob/master/CONTRIBUTING.md).