Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ismaelfaro/qiskit-docker
qiskit-docker
https://github.com/ismaelfaro/qiskit-docker
Last synced: 15 days ago
JSON representation
qiskit-docker
- Host: GitHub
- URL: https://github.com/ismaelfaro/qiskit-docker
- Owner: ismaelfaro
- Created: 2020-07-04T20:35:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-29T03:34:01.000Z (5 months ago)
- Last Synced: 2024-05-29T16:42:56.283Z (5 months ago)
- Language: Dockerfile
- Size: 12.7 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Qiskit docker
Execute docker with all the Qiskit dependencies installed, and mounting your current folder/directory inside /qiskit/ folder in docker.
## use
you need to have installed docker or podman in your machine, ex. ([Docker Desktop](https://www.docker.com/products/docker-desktop) [Podman](https://podman.io))
### with Jupyter Lab and tutorials
you can use it directly from Docker hub
> docker run -v ${PWD}:/qiskit/your_computer -p 8888:8888 -ti ismaelfaro/qiskit_dev
### Vanilla Qiskit version
## Create image
> docker build -t qiskit .
## execute mounting your current directory
> docker run -v ${PWD}:/qiskit -ti qiskit
### adding port to run jupyter lab
> docker run -v ${PWD}:/qiskit/your_computer -p 8888:8888 -ti qiskit
## execute python and start
> python
> from qiskit import *### run Jupyter Lab
you can play with Jupyter lab and Qiskit in your browser.
> htt://127.0.0.1:8888/?token=[[[paste here the token from the terminal]]]# dependecies:
- OS: Ubuntu