Skip to content

A project dedicated to my personal learnings using the Quantum Computing toolkit 'Qiskit'

Notifications You must be signed in to change notification settings

Xenarc/learning-qiskit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning Qiskit

Table of Contents

Notes 1

Getting started 2 3

Install

docker build . -t qiskit-notebook

Build the Jupyter Notebook image as defined in Dockerfile. Then, tags (-t) it with the name 'qiskit-notebook'. Building the image will automatically install all of the dependencies listed in requirements.txt.

Start

docker run -p 8888:8888 --name notebook --env-file .env --rm -it -v "$(pwd)/notebook:/home/jovyan/work" qiskit-notebook

The above command runs the docker image previously created. It maps (-p) the container port 8888 to 8888 and names the container 'notebook'. It will also run the image with an integrated terminal (-it) and mount a volume (-v) from ./notebook to the work directory once opened in the Jupyter web editor. It will also conveniently remove (--rm) the container after you CTRL+C to kill the Jupyter server.

Learning

Most of the learning/notes is within the Jupyter notebook.

About

A project dedicated to my personal learnings using the Quantum Computing toolkit 'Qiskit'

Topics

Resources

Stars

Watchers

Forks