Remove mention of IBM Q account URL from README (#7827)

While this function accepts a URL, it is not essential for basic
use, and it is not clear from the IBM Q account what URL should
be used.

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Jim Garrison 2022-05-16 15:16:51 -04:00 committed by GitHub
parent d53d17c452
commit 4d459c8c47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -61,13 +61,13 @@ your IBM Q account:
1. Create an _[IBM Q](https://quantum-computing.ibm.com) > Account_ if you haven't already done so.
2. Get an API token from the IBM Q website under _My Account > API Token_ and the URL for the account.
2. Get an API token from the IBM Q website under _My Account > API Token_.
3. Take your token and url from step 2, here called `MY_API_TOKEN`, `MY_URL`, and run:
3. Take your token from step 2, here called `MY_API_TOKEN`, and run:
```python
>>> from qiskit import IBMQ
>>> IBMQ.save_account('MY_API_TOKEN', 'MY_URL')
>>> IBMQ.save_account('MY_API_TOKEN')
```
After calling `IBMQ.save_account()`, your credentials will be stored on disk.