Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/icekhan13/qiskit-workshop
https://github.com/icekhan13/qiskit-workshop
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/icekhan13/qiskit-workshop
- Owner: IceKhan13
- Created: 2022-01-05T20:05:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-08T22:00:55.000Z (about 3 years ago)
- Last Synced: 2024-11-09T17:42:35.123Z (2 months ago)
- Language: Jupyter Notebook
- Size: 496 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Qiskit workshop
===============Notebook for workshop is called `qiskit-workshop-lab-notebook`.
### Installation
#### Getting IBM Q account and token
1. Go to https://quantum-computing.ibm.com/
2. Register
3. On your welcome page you should see `API token` field which you can copy and use during lab#### Local jupter + qiskit setup
0. (if you do not have it already) [Install conda](https://www.anaconda.com/products/individual)
1. In terminal: create a new conda env
```shell
conda create --name qiskit-workshop python=3.7
```
2. In terminal: activate env
```shell
conda activate qiskit-workshop
```
3. In terminal: Install dependencies
```shell
conda install jupyter matplotlib
pip install qiskit pylatexenc
```
4. In terminal: launch jupyter
```shell
jupyter notebook
```